Class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1SubscriptionPromotionSpec
- Inherits:
-
Object
- Object
- Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1SubscriptionPromotionSpec
- 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
Describes the spec for one promotion.
Instance Attribute Summary collapse
-
#free_trial_duration ⇒ Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Duration
Describes the length of a period of a time.
-
#introductory_pricing_details ⇒ Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1PromotionIntroductoryPricingDetails
The details of a introductory pricing promotion.
-
#promotion ⇒ String
Required.
-
#type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudPaymentsResellerSubscriptionV1SubscriptionPromotionSpec
constructor
A new instance of GoogleCloudPaymentsResellerSubscriptionV1SubscriptionPromotionSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudPaymentsResellerSubscriptionV1SubscriptionPromotionSpec
Returns a new instance of GoogleCloudPaymentsResellerSubscriptionV1SubscriptionPromotionSpec.
1285 1286 1287 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 1285 def initialize(**args) update!(**args) end |
Instance Attribute Details
#free_trial_duration ⇒ Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Duration
Describes the length of a period of a time.
Corresponds to the JSON property freeTrialDuration
1267 1268 1269 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 1267 def free_trial_duration @free_trial_duration end |
#introductory_pricing_details ⇒ Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1PromotionIntroductoryPricingDetails
The details of a introductory pricing promotion.
Corresponds to the JSON property introductoryPricingDetails
1272 1273 1274 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 1272 def introductory_pricing_details @introductory_pricing_details end |
#promotion ⇒ String
Required. Promotion resource name that identifies a promotion. The format is '
partners/partner_id
/promotions/promotion_id
'.
Corresponds to the JSON property promotion
1278 1279 1280 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 1278 def promotion @promotion end |
#type ⇒ String
Output only. The type of the promotion for the spec.
Corresponds to the JSON property type
1283 1284 1285 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 1283 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1290 1291 1292 1293 1294 1295 |
# File 'lib/google/apis/paymentsresellersubscription_v1/classes.rb', line 1290 def update!(**args) @free_trial_duration = args[:free_trial_duration] if args.key?(:free_trial_duration) @introductory_pricing_details = args[:introductory_pricing_details] if args.key?(:introductory_pricing_details) @promotion = args[:promotion] if args.key?(:promotion) @type = args[:type] if args.key?(:type) end |