Class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Product
- Inherits:
-
Object
- Object
- Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Product
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/paymentsresellersubscription_v1/classes.rb,
lib/google/apis/paymentsresellersubscription_v1/representations.rb,
lib/google/apis/paymentsresellersubscription_v1/representations.rb
Overview
A Product resource that defines a subscription service that can be resold.
Instance Attribute Summary collapse
-
#finite_billing_cycle_details ⇒ Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1FiniteBillingCycleDetails
Details for a subscriptiin line item with finite billing cycles.
-
#name ⇒ String
Output only.
-
#price_configs ⇒ Array<Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1ProductPriceConfig>
Output only.
-
#region_codes ⇒ Array<String>
Output only.
-
#subscription_billing_cycle_duration ⇒ Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Duration
Describes the length of a period of a time.
-
#titles ⇒ Array<Google::Apis::PaymentsresellersubscriptionV1::GoogleTypeLocalizedText>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudPaymentsResellerSubscriptionV1Product
constructor
A new instance of GoogleCloudPaymentsResellerSubscriptionV1Product.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudPaymentsResellerSubscriptionV1Product
Returns a new instance of GoogleCloudPaymentsResellerSubscriptionV1Product.
493 494 495 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 493 def initialize(**args) update!(**args) end |
Instance Attribute Details
#finite_billing_cycle_details ⇒ Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1FiniteBillingCycleDetails
Details for a subscriptiin line item with finite billing cycles.
Corresponds to the JSON property finiteBillingCycleDetails
464 465 466 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 464 def finite_billing_cycle_details @finite_billing_cycle_details end |
#name ⇒ String
Output only. Response only. Resource name of the product. It will have the
format of "partners/partner_id/products/product_id"
Corresponds to the JSON property name
470 471 472 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 470 def name @name end |
#price_configs ⇒ Array<Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1ProductPriceConfig>
Output only. Price configs for the product in the available regions.
Corresponds to the JSON property priceConfigs
475 476 477 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 475 def price_configs @price_configs end |
#region_codes ⇒ Array<String>
Output only. 2-letter ISO region code where the product is available in. Ex. "
US" Please refers to: https://en.wikipedia.org/wiki/ISO_3166-1
Corresponds to the JSON property regionCodes
481 482 483 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 481 def region_codes @region_codes end |
#subscription_billing_cycle_duration ⇒ Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Duration
Describes the length of a period of a time.
Corresponds to the JSON property subscriptionBillingCycleDuration
486 487 488 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 486 def subscription_billing_cycle_duration @subscription_billing_cycle_duration end |
#titles ⇒ Array<Google::Apis::PaymentsresellersubscriptionV1::GoogleTypeLocalizedText>
Output only. Localized human readable name of the product.
Corresponds to the JSON property titles
491 492 493 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 491 def titles @titles end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
498 499 500 501 502 503 504 505 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 498 def update!(**args) @finite_billing_cycle_details = args[:finite_billing_cycle_details] if args.key?(:finite_billing_cycle_details) @name = args[:name] if args.key?(:name) @price_configs = args[:price_configs] if args.key?(:price_configs) @region_codes = args[:region_codes] if args.key?(:region_codes) @subscription_billing_cycle_duration = args[:subscription_billing_cycle_duration] if args.key?(:subscription_billing_cycle_duration) @titles = args[:titles] if args.key?(:titles) end |