Sha256: 6ba9b1f97ab690df20e0e47c6e43aba3c1fddd87e319bf237e349a60d82f541c
Contents?: true
Size: 918 Bytes
Versions: 4
Compression:
Stored size: 918 Bytes
Contents
# frozen_string_literal: true # Code generated for API Clients. DO NOT EDIT. module NgrokAPI module Models class EndpointOAuthGitHub attr_reader :client, :attrs, :client_id, :client_secret, :scopes, :email_addresses, :email_domains, :teams, :organizations 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'] @teams = @attrs['teams'] @organizations = @attrs['organizations'] end def ==(other) @attrs == other.attrs end def to_s @attrs.to_s end def to_h @attrs.to_h end end end end
Version data entries
4 entries across 4 versions & 1 rubygems