Class: NgrokAPI::Models::EndpointIPPolicy

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client:, result:) ⇒ EndpointIPPolicy

Returns a new instance of EndpointIPPolicy.



11
12
13
14
15
16
# File 'lib/ngrokapi/models/endpoint_ip_policy.rb', line 11

def initialize(client:, result:)
  @client = client
  @result = result
  @enabled = @result['enabled']
  @ip_policies = @result['ip_policies']
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



6
7
8
# File 'lib/ngrokapi/models/endpoint_ip_policy.rb', line 6

def client
  @client
end

#enabledObject (readonly)

Returns the value of attribute enabled.



6
7
8
# File 'lib/ngrokapi/models/endpoint_ip_policy.rb', line 6

def enabled
  @enabled
end

#ip_policiesObject (readonly)

Returns the value of attribute ip_policies.



6
7
8
# File 'lib/ngrokapi/models/endpoint_ip_policy.rb', line 6

def ip_policies
  @ip_policies
end

#resultObject (readonly)

Returns the value of attribute result.



6
7
8
# File 'lib/ngrokapi/models/endpoint_ip_policy.rb', line 6

def result
  @result
end

Instance Method Details

#==(other) ⇒ Object



18
19
20
# File 'lib/ngrokapi/models/endpoint_ip_policy.rb', line 18

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

#to_sObject



22
23
24
# File 'lib/ngrokapi/models/endpoint_ip_policy.rb', line 22

def to_s
  @result.to_s
end