Class: Google::Apis::YoutubePartnerV1::ClaimHistory
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ClaimHistory
- 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
-
#event ⇒ Array<Google::Apis::YoutubePartnerV1::ClaimEvent>
A list of claim history events.
-
#id ⇒ String
The ID that YouTube assigns and uses to uniquely identify the claim.
-
#kind ⇒ String
The type of the API resource.
-
#uploader_channel_id ⇒ String
The external channel id of claimed video's uploader.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClaimHistory
constructor
A new instance of ClaimHistory.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClaimHistory
Returns a new instance of ClaimHistory.
947 948 949 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 947 def initialize(**args) update!(**args) end |
Instance Attribute Details
#event ⇒ Array<Google::Apis::YoutubePartnerV1::ClaimEvent>
A list of claim history events.
Corresponds to the JSON property event
929 930 931 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 929 def event @event end |
#id ⇒ String
The ID that YouTube assigns and uses to uniquely identify the claim.
Corresponds to the JSON property id
934 935 936 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 934 def id @id end |
#kind ⇒ String
The type of the API resource. For claimHistory resources, this value is
youtubePartner#claimHistory.
Corresponds to the JSON property kind
940 941 942 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 940 def kind @kind end |
#uploader_channel_id ⇒ String
The external channel id of claimed video's uploader.
Corresponds to the JSON property uploaderChannelId
945 946 947 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 945 def uploader_channel_id @uploader_channel_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
952 953 954 955 956 957 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 952 def update!(**args) @event = args[:event] if args.key?(:event) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @uploader_channel_id = args[:uploader_channel_id] if args.key?(:uploader_channel_id) end |