Class: Appwrite::Models::OAuth2Google
- Inherits:
-
Object
- Object
- Appwrite::Models::OAuth2Google
- Defined in:
- lib/appwrite/models/o_auth2_google.rb
Instance Attribute Summary collapse
-
#client_id ⇒ Object
readonly
Returns the value of attribute client_id.
-
#client_secret ⇒ Object
readonly
Returns the value of attribute client_secret.
-
#enabled ⇒ Object
readonly
Returns the value of attribute enabled.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#prompt ⇒ Object
readonly
Returns the value of attribute prompt.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id:, enabled:, client_id:, client_secret:, prompt:) ⇒ OAuth2Google
constructor
A new instance of OAuth2Google.
- #to_map ⇒ Object
Constructor Details
#initialize(id:, enabled:, client_id:, client_secret:, prompt:) ⇒ OAuth2Google
Returns a new instance of OAuth2Google.
12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/appwrite/models/o_auth2_google.rb', line 12 def initialize( id:, enabled:, client_id:, client_secret:, prompt: ) @id = id @enabled = enabled @client_id = client_id @client_secret = client_secret @prompt = prompt end |
Instance Attribute Details
#client_id ⇒ Object (readonly)
Returns the value of attribute client_id.
8 9 10 |
# File 'lib/appwrite/models/o_auth2_google.rb', line 8 def client_id @client_id end |
#client_secret ⇒ Object (readonly)
Returns the value of attribute client_secret.
9 10 11 |
# File 'lib/appwrite/models/o_auth2_google.rb', line 9 def client_secret @client_secret end |
#enabled ⇒ Object (readonly)
Returns the value of attribute enabled.
7 8 9 |
# File 'lib/appwrite/models/o_auth2_google.rb', line 7 def enabled @enabled end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
6 7 8 |
# File 'lib/appwrite/models/o_auth2_google.rb', line 6 def id @id end |
#prompt ⇒ Object (readonly)
Returns the value of attribute prompt.
10 11 12 |
# File 'lib/appwrite/models/o_auth2_google.rb', line 10 def prompt @prompt end |
Class Method Details
.from(map:) ⇒ Object
26 27 28 29 30 31 32 33 34 |
# File 'lib/appwrite/models/o_auth2_google.rb', line 26 def self.from(map:) OAuth2Google.new( id: map["$id"], enabled: map["enabled"], client_id: map["clientId"], client_secret: map["clientSecret"], prompt: map["prompt"] ) end |
Instance Method Details
#to_map ⇒ Object
36 37 38 39 40 41 42 43 44 |
# File 'lib/appwrite/models/o_auth2_google.rb', line 36 def to_map { "$id": @id, "enabled": @enabled, "clientId": @client_id, "clientSecret": @client_secret, "prompt": @prompt } end |