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