Files
2023-08-24 20:57:40 +00:00

40 lines
796 B
Ruby

# frozen_string_literal: true
# Code generated for API Clients. DO NOT EDIT.
module NgrokAPI
module Models
class EndpointOAuthAmazon
attr_reader :client,
:attrs,
:client_id,
:client_secret,
:scopes,
:email_addresses,
:email_domains
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
def ==(other)
@attrs == other.attrs
end
def to_s
@attrs.to_s
end
def to_h
@attrs.to_h
end
end
end
end