Class: Appwrite::Models::Oauth2OrganizationList
- Inherits:
-
Object
- Object
- Appwrite::Models::Oauth2OrganizationList
- Defined in:
- lib/appwrite/models/oauth2_organization_list.rb
Instance Attribute Summary collapse
-
#organizations ⇒ Object
readonly
Returns the value of attribute organizations.
-
#total ⇒ Object
readonly
Returns the value of attribute total.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(total:, organizations:) ⇒ Oauth2OrganizationList
constructor
A new instance of Oauth2OrganizationList.
- #to_map ⇒ Object
Constructor Details
#initialize(total:, organizations:) ⇒ Oauth2OrganizationList
Returns a new instance of Oauth2OrganizationList.
9 10 11 12 13 14 15 |
# File 'lib/appwrite/models/oauth2_organization_list.rb', line 9 def initialize( total:, organizations: ) @total = total @organizations = organizations end |
Instance Attribute Details
#organizations ⇒ Object (readonly)
Returns the value of attribute organizations.
7 8 9 |
# File 'lib/appwrite/models/oauth2_organization_list.rb', line 7 def organizations @organizations end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
6 7 8 |
# File 'lib/appwrite/models/oauth2_organization_list.rb', line 6 def total @total end |
Class Method Details
.from(map:) ⇒ Object
17 18 19 20 21 22 |
# File 'lib/appwrite/models/oauth2_organization_list.rb', line 17 def self.from(map:) Oauth2OrganizationList.new( total: map["total"], organizations: map["organizations"].map { |it| Oauth2Organization.from(map: it) } ) end |
Instance Method Details
#to_map ⇒ Object
24 25 26 27 28 29 |
# File 'lib/appwrite/models/oauth2_organization_list.rb', line 24 def to_map { "total": @total, "organizations": @organizations.map { |it| it.to_map } } end |