Class: Google::Apis::YoutubePartnerV1::ClaimEvent
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ClaimEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_partner_v1/classes.rb,
generated/google/apis/youtube_partner_v1/representations.rb,
generated/google/apis/youtube_partner_v1/representations.rb
Instance Attribute Summary collapse
-
#kind ⇒ String
The type of the API resource.
-
#reason ⇒ String
Reason of the event.
-
#source ⇒ Google::Apis::YoutubePartnerV1::Source
Data related to source of the event.
-
#time ⇒ String
The time when the event occurred.
-
#type ⇒ String
Type of the event.
-
#type_details ⇒ Google::Apis::YoutubePartnerV1::TypeDetails
Details of event's type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClaimEvent
constructor
A new instance of ClaimEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClaimEvent
Returns a new instance of ClaimEvent.
907 908 909 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 907 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
The type of the API resource. For claimEvent resources, this value is
youtubePartner#claimEvent.
Corresponds to the JSON property kind
880 881 882 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 880 def kind @kind end |
#reason ⇒ String
Reason of the event.
Corresponds to the JSON property reason
885 886 887 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 885 def reason @reason end |
#source ⇒ Google::Apis::YoutubePartnerV1::Source
Data related to source of the event.
Corresponds to the JSON property source
890 891 892 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 890 def source @source end |
#time ⇒ String
The time when the event occurred.
Corresponds to the JSON property time
895 896 897 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 895 def time @time end |
#type ⇒ String
Type of the event.
Corresponds to the JSON property type
900 901 902 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 900 def type @type end |
#type_details ⇒ Google::Apis::YoutubePartnerV1::TypeDetails
Details of event's type.
Corresponds to the JSON property typeDetails
905 906 907 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 905 def type_details @type_details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
912 913 914 915 916 917 918 919 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 912 def update!(**args) @kind = args[:kind] if args.key?(:kind) @reason = args[:reason] if args.key?(:reason) @source = args[:source] if args.key?(:source) @time = args[:time] if args.key?(:time) @type = args[:type] if args.key?(:type) @type_details = args[:type_details] if args.key?(:type_details) end |