Class: NgrokAPI::Models::EndpointOAuthMicrosoft

Inherits:
Object
  • Object
show all
Defined in:
lib/ngrokapi/models/endpoint_o_auth_microsoft.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client: nil, attrs: {}) ⇒ EndpointOAuthMicrosoft

Returns a new instance of EndpointOAuthMicrosoft.



16
17
18
19
20
21
22
23
24
# File 'lib/ngrokapi/models/endpoint_o_auth_microsoft.rb', line 16

def initialize(client: nil, attrs: {})
  @client = client
  @attrs = attrs
  @client_id = @attrs['client_id']
  @client_secret = @attrs['client_secret']
  @scopes = @attrs['scopes']
  @email_addresses = @attrs['email_addresses']
  @email_domains = @attrs['email_domains']
end

Instance Attribute Details

#attrsObject (readonly)

Returns the value of attribute attrs.



8
9
10
# File 'lib/ngrokapi/models/endpoint_o_auth_microsoft.rb', line 8

def attrs
  @attrs
end

#clientObject (readonly)

Returns the value of attribute client.



8
9
10
# File 'lib/ngrokapi/models/endpoint_o_auth_microsoft.rb', line 8

def client
  @client
end

#client_idObject (readonly)

Returns the value of attribute client_id.



8
9
10
# File 'lib/ngrokapi/models/endpoint_o_auth_microsoft.rb', line 8

def client_id
  @client_id
end

#client_secretObject (readonly)

Returns the value of attribute client_secret.



8
9
10
# File 'lib/ngrokapi/models/endpoint_o_auth_microsoft.rb', line 8

def client_secret
  @client_secret
end

#email_addressesObject (readonly)

Returns the value of attribute email_addresses.



8
9
10
# File 'lib/ngrokapi/models/endpoint_o_auth_microsoft.rb', line 8

def email_addresses
  @email_addresses
end

#email_domainsObject (readonly)

Returns the value of attribute email_domains.



8
9
10
# File 'lib/ngrokapi/models/endpoint_o_auth_microsoft.rb', line 8

def email_domains
  @email_domains
end

#scopesObject (readonly)

Returns the value of attribute scopes.



8
9
10
# File 'lib/ngrokapi/models/endpoint_o_auth_microsoft.rb', line 8

def scopes
  @scopes
end

Instance Method Details

#==(other) ⇒ Object



26
27
28
# File 'lib/ngrokapi/models/endpoint_o_auth_microsoft.rb', line 26

def ==(other)
  @attrs == other.attrs
end

#to_hObject



34
35
36
# File 'lib/ngrokapi/models/endpoint_o_auth_microsoft.rb', line 34

def to_h
  @attrs.to_h
end

#to_sObject



30
31
32
# File 'lib/ngrokapi/models/endpoint_o_auth_microsoft.rb', line 30

def to_s
  @attrs.to_s
end