Class: Appwrite::Models::Identity
- Inherits:
-
Object
- Object
- Appwrite::Models::Identity
- Defined in:
- lib/appwrite/models/identity.rb
Instance Attribute Summary collapse
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#provider ⇒ Object
readonly
Returns the value of attribute provider.
-
#provider_access_token ⇒ Object
readonly
Returns the value of attribute provider_access_token.
-
#provider_access_token_expiry ⇒ Object
readonly
Returns the value of attribute provider_access_token_expiry.
-
#provider_email ⇒ Object
readonly
Returns the value of attribute provider_email.
-
#provider_refresh_token ⇒ Object
readonly
Returns the value of attribute provider_refresh_token.
-
#provider_uid ⇒ Object
readonly
Returns the value of attribute provider_uid.
-
#updated_at ⇒ Object
readonly
Returns the value of attribute updated_at.
-
#user_id ⇒ Object
readonly
Returns the value of attribute user_id.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id:, created_at:, updated_at:, user_id:, provider:, provider_uid:, provider_email:, provider_access_token:, provider_access_token_expiry:, provider_refresh_token:) ⇒ Identity
constructor
A new instance of Identity.
- #to_map ⇒ Object
Constructor Details
#initialize(id:, created_at:, updated_at:, user_id:, provider:, provider_uid:, provider_email:, provider_access_token:, provider_access_token_expiry:, provider_refresh_token:) ⇒ Identity
Returns a new instance of Identity.
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/appwrite/models/identity.rb', line 17 def initialize( id:, created_at:, updated_at:, user_id:, provider:, provider_uid:, provider_email:, provider_access_token:, provider_access_token_expiry:, provider_refresh_token: ) @id = id @created_at = created_at @updated_at = updated_at @user_id = user_id @provider = provider @provider_uid = provider_uid @provider_email = provider_email @provider_access_token = provider_access_token @provider_access_token_expiry = provider_access_token_expiry @provider_refresh_token = provider_refresh_token end |
Instance Attribute Details
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
7 8 9 |
# File 'lib/appwrite/models/identity.rb', line 7 def created_at @created_at end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
6 7 8 |
# File 'lib/appwrite/models/identity.rb', line 6 def id @id end |
#provider ⇒ Object (readonly)
Returns the value of attribute provider.
10 11 12 |
# File 'lib/appwrite/models/identity.rb', line 10 def provider @provider end |
#provider_access_token ⇒ Object (readonly)
Returns the value of attribute provider_access_token.
13 14 15 |
# File 'lib/appwrite/models/identity.rb', line 13 def provider_access_token @provider_access_token end |
#provider_access_token_expiry ⇒ Object (readonly)
Returns the value of attribute provider_access_token_expiry.
14 15 16 |
# File 'lib/appwrite/models/identity.rb', line 14 def provider_access_token_expiry @provider_access_token_expiry end |
#provider_email ⇒ Object (readonly)
Returns the value of attribute provider_email.
12 13 14 |
# File 'lib/appwrite/models/identity.rb', line 12 def provider_email @provider_email end |
#provider_refresh_token ⇒ Object (readonly)
Returns the value of attribute provider_refresh_token.
15 16 17 |
# File 'lib/appwrite/models/identity.rb', line 15 def provider_refresh_token @provider_refresh_token end |
#provider_uid ⇒ Object (readonly)
Returns the value of attribute provider_uid.
11 12 13 |
# File 'lib/appwrite/models/identity.rb', line 11 def provider_uid @provider_uid end |
#updated_at ⇒ Object (readonly)
Returns the value of attribute updated_at.
8 9 10 |
# File 'lib/appwrite/models/identity.rb', line 8 def updated_at @updated_at end |
#user_id ⇒ Object (readonly)
Returns the value of attribute user_id.
9 10 11 |
# File 'lib/appwrite/models/identity.rb', line 9 def user_id @user_id end |
Class Method Details
.from(map:) ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/appwrite/models/identity.rb', line 41 def self.from(map:) Identity.new( id: map["$id"], created_at: map["$createdAt"], updated_at: map["$updatedAt"], user_id: map["userId"], provider: map["provider"], provider_uid: map["providerUid"], provider_email: map["providerEmail"], provider_access_token: map["providerAccessToken"], provider_access_token_expiry: map["providerAccessTokenExpiry"], provider_refresh_token: map["providerRefreshToken"] ) end |
Instance Method Details
#to_map ⇒ Object
56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/appwrite/models/identity.rb', line 56 def to_map { "$id": @id, "$createdAt": @created_at, "$updatedAt": @updated_at, "userId": @user_id, "provider": @provider, "providerUid": @provider_uid, "providerEmail": @provider_email, "providerAccessToken": @provider_access_token, "providerAccessTokenExpiry": @provider_access_token_expiry, "providerRefreshToken": @provider_refresh_token } end |