Module: Stigg::Models::V1::Customers::IntegrationListParams::VendorIdentifier

Extended by:
Internal::Type::Enum
Defined in:
lib/stigg/models/v1/customers/integration_list_params.rb

Constant Summary collapse

AUTH0 =
:AUTH0
ZUORA =
:ZUORA
STRIPE =
:STRIPE
HUBSPOT =
:HUBSPOT
AWS_MARKETPLACE =
:AWS_MARKETPLACE
SNOWFLAKE =
:SNOWFLAKE
SALESFORCE =
:SALESFORCE
BIG_QUERY =
:BIG_QUERY
OPEN_FGA =
:OPEN_FGA
APP_STORE =
:APP_STORE

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Internal::Type::Enum

==, ===, coerce, dump, hash, inspect, to_sorbet_type, values

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/stigg/models/v1/customers/integration_list_params.rb', line 73

Instance Method Details

#initialize(id:, after: nil, before: nil, limit: nil, vendor_identifier: nil, request_options: {}) ⇒ Object

Some parameter documentations has been truncated, see Stigg::Models::V1::Customers::IntegrationListParams for more details.

Parameters:

  • id (String)
  • after (String) (defaults to: nil)

    Return items that come after this cursor

  • before (String) (defaults to: nil)

    Return items that come before this cursor

  • limit (Integer) (defaults to: nil)

    Maximum number of items to return

  • vendor_identifier (Array<Symbol, Stigg::Models::V1::Customers::IntegrationListParams::VendorIdentifier>) (defaults to: nil)

    Filter by vendor identifier. Supports comma-separated values for multiple vendor

  • request_options (Stigg::RequestOptions, Hash{Symbol=>Object}) (defaults to: {})


59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/stigg/models/v1/customers/integration_list_params.rb', line 59

module VendorIdentifier
  extend Stigg::Internal::Type::Enum

  AUTH0 = :AUTH0
  ZUORA = :ZUORA
  STRIPE = :STRIPE
  HUBSPOT = :HUBSPOT
  AWS_MARKETPLACE = :AWS_MARKETPLACE
  SNOWFLAKE = :SNOWFLAKE
  SALESFORCE = :SALESFORCE
  BIG_QUERY = :BIG_QUERY
  OPEN_FGA = :OPEN_FGA
  APP_STORE = :APP_STORE

  # @!method self.values
  #   @return [Array<Symbol>]
end