Files
ngrok-api-ruby/lib/ngrokapi/models/endpoint_mutual_tls_mutate.rb
2023-08-24 20:57:40 +00:00

34 lines
626 B
Ruby

# frozen_string_literal: true
# Code generated for API Clients. DO NOT EDIT.
module NgrokAPI
module Models
class EndpointMutualTLSMutate
attr_reader :client,
:attrs,
:enabled,
:certificate_authority_ids
def initialize(client: nil, attrs: {})
@client = client
@attrs = attrs
@enabled = @attrs['enabled']
@certificate_authority_ids = @attrs['certificate_authority_ids']
end
def ==(other)
@attrs == other.attrs
end
def to_s
@attrs.to_s
end
def to_h
@attrs.to_h
end
end
end
end