Class: NgrokAPI::Models::EndpointOAuth

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of EndpointOAuth.



18
19
20
21
22
23
24
25
26
27
28
# File 'lib/ngrokapi/models/endpoint_o_auth.rb', line 18

def initialize(client: nil, attrs: {})
  @client = client
  @attrs = attrs
  @enabled = @attrs['enabled']
  @provider = @attrs['provider']
  @options_passthrough = @attrs['options_passthrough']
  @cookie_prefix = @attrs['cookie_prefix']
  @inactivity_timeout = @attrs['inactivity_timeout']
  @maximum_duration = @attrs['maximum_duration']
  @auth_check_interval = @attrs['auth_check_interval']
end

Instance Attribute Details

#attrsObject (readonly)

Returns the value of attribute attrs.



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

def attrs
  @attrs
end

#auth_check_intervalObject (readonly)

Returns the value of attribute auth_check_interval.



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

def auth_check_interval
  @auth_check_interval
end

#clientObject (readonly)

Returns the value of attribute client.



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

def client
  @client
end

Returns the value of attribute cookie_prefix.



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

def cookie_prefix
  @cookie_prefix
end

#enabledObject (readonly)

Returns the value of attribute enabled.



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

def enabled
  @enabled
end

#inactivity_timeoutObject (readonly)

Returns the value of attribute inactivity_timeout.



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

def inactivity_timeout
  @inactivity_timeout
end

#maximum_durationObject (readonly)

Returns the value of attribute maximum_duration.



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

def maximum_duration
  @maximum_duration
end

#options_passthroughObject (readonly)

Returns the value of attribute options_passthrough.



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

def options_passthrough
  @options_passthrough
end

#providerObject (readonly)

Returns the value of attribute provider.



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

def provider
  @provider
end

Instance Method Details

#==(other) ⇒ Object



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

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

#to_hObject



38
39
40
# File 'lib/ngrokapi/models/endpoint_o_auth.rb', line 38

def to_h
  @attrs.to_h
end

#to_sObject



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

def to_s
  @attrs.to_s
end