Class: MetronomeSDK::Models::V1::ContractCreateParams::RecurringCredit

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/metronome_sdk/models/v1/contract_create_params.rb

Defined Under Namespace

Modules: Proration, RateType, RecurrenceFrequency Classes: AccessAmount, CommitDuration, SubscriptionConfig

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

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

Methods included from Internal::Util::SorbetRuntimeSupport

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

Constructor Details

#initialize(credit_type_id: , unit_price: , quantity: nil) ⇒ Object

Some parameter documentations has been truncated, see AccessAmount for more details.

The amount of commit to grant.

Parameters:

  • credit_type_id (String) (defaults to: )
  • unit_price (Float) (defaults to: )
  • quantity (Float) (defaults to: nil)

    This field is required unless a subscription is attached via ‘subscription_confi



# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2429


Instance Attribute Details

#access_amountMetronomeSDK::Models::V1::ContractCreateParams::RecurringCredit::AccessAmount

The amount of commit to grant.



2305
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2305

required :access_amount, -> { MetronomeSDK::V1::ContractCreateParams::RecurringCredit::AccessAmount }

#applicable_product_idsArray<String>?

Will be passed down to the individual commits

Returns:

  • (Array<String>, nil)


2336
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2336

optional :applicable_product_ids, MetronomeSDK::Internal::Type::ArrayOf[String]

#applicable_product_tagsArray<String>?

Will be passed down to the individual commits

Returns:

  • (Array<String>, nil)


2342
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2342

optional :applicable_product_tags, MetronomeSDK::Internal::Type::ArrayOf[String]

#commit_durationMetronomeSDK::Models::V1::ContractCreateParams::RecurringCredit::CommitDuration

Defines the length of the access schedule for each created commit/credit. The value represents the number of units. Unit defaults to “PERIODS”, where the length of a period is determined by the recurrence_frequency.



2313
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2313

required :commit_duration, -> { MetronomeSDK::V1::ContractCreateParams::RecurringCredit::CommitDuration }

#descriptionString?

Will be passed down to the individual commits

Returns:

  • (String, nil)


2348
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2348

optional :description, String

#ending_beforeTime?

Determines when the contract will stop creating recurring commits. optional

Returns:

  • (Time, nil)


2354
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2354

optional :ending_before, Time

#hierarchy_configurationMetronomeSDK::Models::CommitHierarchyConfiguration?

Optional configuration for recurring commit/credit hierarchy access control



2360
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2360

optional :hierarchy_configuration, -> { MetronomeSDK::CommitHierarchyConfiguration }

#nameString?

displayed on invoices. will be passed through to the individual commits

Returns:

  • (String, nil)


2366
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2366

optional :name, String

#netsuite_sales_order_idString?

Will be passed down to the individual commits

Returns:

  • (String, nil)


2372
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2372

optional :netsuite_sales_order_id, String

#priorityFloat

Will be passed down to the individual commits

Returns:

  • (Float)


2319
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2319

required :priority, Float

#product_idString

Returns:

  • (String)


2324
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2324

required :product_id, String

#prorationSymbol, ...

Determines whether the first and last commit will be prorated. If not provided, the default is FIRST_AND_LAST (i.e. prorate both the first and last commits).



2379
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2379

optional :proration, enum: -> { MetronomeSDK::V1::ContractCreateParams::RecurringCredit::Proration }

#rate_typeSymbol, ...

Whether the created commits will use the commit rate or list rate



2385
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2385

optional :rate_type, enum: -> { MetronomeSDK::V1::ContractCreateParams::RecurringCredit::RateType }

#recurrence_frequencySymbol, ...

The frequency at which the recurring commits will be created. If not provided: - The commits will be created on the usage invoice frequency. If provided: - The period defined in the duration will correspond to this frequency. - Commits will be created aligned with the recurring commit’s starting_at rather than the usage invoice dates.



2395
2396
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2395

optional :recurrence_frequency,
enum: -> { MetronomeSDK::V1::ContractCreateParams::RecurringCredit::RecurrenceFrequency }

#rollover_fractionFloat?

Will be passed down to the individual commits. This controls how much of an individual unexpired commit will roll over upon contract transition. Must be between 0 and 1.

Returns:

  • (Float, nil)


2404
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2404

optional :rollover_fraction, Float

#specifiersArray<MetronomeSDK::Models::CommitSpecifierInput>?

List of filters that determine what kind of customer usage draws down a commit or credit. A customer’s usage needs to meet the condition of at least one of the specifiers to contribute to a commit’s or credit’s drawdown. This field cannot be used together with ‘applicable_product_ids` or `applicable_product_tags`.



2413
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2413

optional :specifiers, -> { MetronomeSDK::Internal::Type::ArrayOf[MetronomeSDK::CommitSpecifierInput] }

#starting_atTime

determines the start time for the first commit

Returns:

  • (Time)


2330
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2330

required :starting_at, Time

#subscription_configMetronomeSDK::Models::V1::ContractCreateParams::RecurringCredit::SubscriptionConfig?

Attach a subscription to the recurring commit/credit.



2419
2420
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2419

optional :subscription_config,
-> { MetronomeSDK::V1::ContractCreateParams::RecurringCredit::SubscriptionConfig }

#temporary_idString?

A temporary ID that can be used to reference the recurring commit for commit specific overrides.

Returns:

  • (String, nil)


2427
# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2427

optional :temporary_id, String

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/metronome_sdk/models/v1/contract_create_params.rb', line 2531