class NgrokAPI::Models::EndpointRequestHeaders
Attributes
add[R]
attrs[R]
client[R]
enabled[R]
remove[R]
Public Class Methods
new(client: nil, attrs: {})
click to toggle source
# File lib/ngrokapi/models/endpoint_request_headers.rb, line 12 def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @enabled = @attrs['enabled'] @add = @attrs['add'] @remove = @attrs['remove'] end
Public Instance Methods
==(other)
click to toggle source
# File lib/ngrokapi/models/endpoint_request_headers.rb, line 20 def ==(other) @attrs == other.attrs end
to_h()
click to toggle source
# File lib/ngrokapi/models/endpoint_request_headers.rb, line 28 def to_h @attrs.to_h end
to_s()
click to toggle source
# File lib/ngrokapi/models/endpoint_request_headers.rb, line 24 def to_s @attrs.to_s end