Class: Google::Apis::AdsenseV1_4::Payments

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Payments

Returns a new instance of Payments.



986
987
988
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 986

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

Instance Attribute Details

#itemsArray<Google::Apis::AdsenseV1_4::Payment>

The list of Payments for the account. One or both of a) the account's most recent payment; and b) the account's upcoming payment. Corresponds to the JSON property items



979
980
981
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 979

def items
  @items
end

#kindString

Kind of list this is, in this case adsense#payments. Corresponds to the JSON property kind

Returns:

  • (String)


984
985
986
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 984

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



991
992
993
994
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 991

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