Class: Google::Apis::ContentV2::Installment

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Installment

Returns a new instance of Installment



2678
2679
2680
# File 'generated/google/apis/content_v2/classes.rb', line 2678

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#amountGoogle::Apis::ContentV2::Price

The amount the buyer has to pay per month. Corresponds to the JSON property amount



2671
2672
2673
# File 'generated/google/apis/content_v2/classes.rb', line 2671

def amount
  @amount
end

#monthsFixnum

The number of installments the buyer has to pay. Corresponds to the JSON property months

Returns:

  • (Fixnum)


2676
2677
2678
# File 'generated/google/apis/content_v2/classes.rb', line 2676

def months
  @months
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2683
2684
2685
2686
# File 'generated/google/apis/content_v2/classes.rb', line 2683

def update!(**args)
  @amount = args[:amount] if args.key?(:amount)
  @months = args[:months] if args.key?(:months)
end