Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1RenewalSettings
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1RenewalSettings
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb
Overview
Renewal settings for renewable Offers.
Instance Attribute Summary collapse
-
#enable_renewal ⇒ Boolean
(also: #enable_renewal?)
If false, the plan will be completed at the end date.
-
#payment_cycle ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1Period
Represents period in days/months/years.
-
#payment_plan ⇒ String
Describes how a reseller will be billed.
-
#resize_unit_count ⇒ Boolean
(also: #resize_unit_count?)
If true and enable_renewal = true, the unit (for example seats or licenses) will be set to the number of active units at renewal time.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1RenewalSettings
constructor
A new instance of GoogleCloudChannelV1RenewalSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1RenewalSettings
Returns a new instance of GoogleCloudChannelV1RenewalSettings.
1961 1962 1963 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1961 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enable_renewal ⇒ Boolean Also known as: enable_renewal?
If false, the plan will be completed at the end date.
Corresponds to the JSON property enableRenewal
1941 1942 1943 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1941 def enable_renewal @enable_renewal end |
#payment_cycle ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1Period
Represents period in days/months/years.
Corresponds to the JSON property paymentCycle
1947 1948 1949 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1947 def payment_cycle @payment_cycle end |
#payment_plan ⇒ String
Describes how a reseller will be billed.
Corresponds to the JSON property paymentPlan
1952 1953 1954 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1952 def payment_plan @payment_plan end |
#resize_unit_count ⇒ Boolean Also known as: resize_unit_count?
If true and enable_renewal = true, the unit (for example seats or licenses)
will be set to the number of active units at renewal time.
Corresponds to the JSON property resizeUnitCount
1958 1959 1960 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1958 def resize_unit_count @resize_unit_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1966 1967 1968 1969 1970 1971 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1966 def update!(**args) @enable_renewal = args[:enable_renewal] if args.key?(:enable_renewal) @payment_cycle = args[:payment_cycle] if args.key?(:payment_cycle) @payment_plan = args[:payment_plan] if args.key?(:payment_plan) @resize_unit_count = args[:resize_unit_count] if args.key?(:resize_unit_count) end |