Class: Google::Apis::AdsenseV1_4::Payments
- Inherits:
-
Object
- Object
- Google::Apis::AdsenseV1_4::Payments
- 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
-
#items ⇒ Array<Google::Apis::AdsenseV1_4::Payment>
The list of Payments for the account.
-
#kind ⇒ String
Kind of list this is, in this case adsense#payments.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Payments
constructor
A new instance of Payments.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Payments
Returns a new instance of Payments
998 999 1000 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 998 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Array<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
991 992 993 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 991 def items @items end |
#kind ⇒ String
Kind of list this is, in this case adsense#payments.
Corresponds to the JSON property kind
996 997 998 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 996 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1003 1004 1005 1006 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1003 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |