Class: UntitledApi::ApiV1MspsAdminsResponse1

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/untitled_api/models/api_v1_msps_admins_response1.rb

Overview

ApiV1MspsAdminsResponse1 Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(privileges = SKIP, first_name = SKIP, last_name = SKIP, email = SKIP, admin_id = SKIP, two_factor_verified = SKIP) ⇒ ApiV1MspsAdminsResponse1

Returns a new instance of ApiV1MspsAdminsResponse1.



65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/untitled_api/models/api_v1_msps_admins_response1.rb', line 65

def initialize(privileges = SKIP,
               first_name = SKIP,
               last_name = SKIP,
               email = SKIP,
               admin_id = SKIP,
               two_factor_verified = SKIP)
  @privileges = privileges unless privileges == SKIP
  @first_name = first_name unless first_name == SKIP
  @last_name = last_name unless last_name == SKIP
  @email = email unless email == SKIP
  @admin_id = admin_id unless admin_id == SKIP
  @two_factor_verified = two_factor_verified unless two_factor_verified == SKIP
end

Instance Attribute Details

#admin_idString

TODO: Write general description for this method

Returns:

  • (String)


30
31
32
# File 'lib/untitled_api/models/api_v1_msps_admins_response1.rb', line 30

def admin_id
  @admin_id
end

#emailString

TODO: Write general description for this method

Returns:

  • (String)


26
27
28
# File 'lib/untitled_api/models/api_v1_msps_admins_response1.rb', line 26

def email
  @email
end

#first_nameObject

TODO: Write general description for this method

Returns:

  • (Object)


18
19
20
# File 'lib/untitled_api/models/api_v1_msps_admins_response1.rb', line 18

def first_name
  @first_name
end

#last_nameObject

TODO: Write general description for this method

Returns:

  • (Object)


22
23
24
# File 'lib/untitled_api/models/api_v1_msps_admins_response1.rb', line 22

def last_name
  @last_name
end

#privilegesObject

TODO: Write general description for this method

Returns:

  • (Object)


14
15
16
# File 'lib/untitled_api/models/api_v1_msps_admins_response1.rb', line 14

def privileges
  @privileges
end

#two_factor_verifiedObject

TODO: Write general description for this method

Returns:

  • (Object)


34
35
36
# File 'lib/untitled_api/models/api_v1_msps_admins_response1.rb', line 34

def two_factor_verified
  @two_factor_verified
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/untitled_api/models/api_v1_msps_admins_response1.rb', line 80

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  privileges = hash.key?('privileges') ? hash['privileges'] : SKIP
  first_name = hash.key?('first_name') ? hash['first_name'] : SKIP
  last_name = hash.key?('last_name') ? hash['last_name'] : SKIP
  email = hash.key?('email') ? hash['email'] : SKIP
  admin_id = hash.key?('admin_id') ? hash['admin_id'] : SKIP
  two_factor_verified =
    hash.key?('two_factor_verified') ? hash['two_factor_verified'] : SKIP

  # Create object from extracted values.
  ApiV1MspsAdminsResponse1.new(privileges,
                               first_name,
                               last_name,
                               email,
                               admin_id,
                               two_factor_verified)
end

.namesObject

A mapping from model property names to API property names.



37
38
39
40
41
42
43
44
45
46
# File 'lib/untitled_api/models/api_v1_msps_admins_response1.rb', line 37

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['privileges'] = 'privileges'
  @_hash['first_name'] = 'first_name'
  @_hash['last_name'] = 'last_name'
  @_hash['email'] = 'email'
  @_hash['admin_id'] = 'admin_id'
  @_hash['two_factor_verified'] = 'two_factor_verified'
  @_hash
end

.nullablesObject

An array for nullable fields



61
62
63
# File 'lib/untitled_api/models/api_v1_msps_admins_response1.rb', line 61

def self.nullables
  []
end

.optionalsObject

An array for optional fields



49
50
51
52
53
54
55
56
57
58
# File 'lib/untitled_api/models/api_v1_msps_admins_response1.rb', line 49

def self.optionals
  %w[
    privileges
    first_name
    last_name
    email
    admin_id
    two_factor_verified
  ]
end