Class: Google::Apis::YoutubePartnerV1::ClaimEvent

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#kindString

The type of the API resource. For claimEvent resources, this value is youtubePartner#claimEvent. Corresponds to the JSON property kind

Returns:

  • (String)


880
881
882
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 880

def kind
  @kind
end

#reasonString

Reason of the event. Corresponds to the JSON property reason

Returns:

  • (String)


885
886
887
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 885

def reason
  @reason
end

#sourceGoogle::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

#timeString

The time when the event occurred. Corresponds to the JSON property time

Returns:

  • (String)


895
896
897
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 895

def time
  @time
end

#typeString

Type of the event. Corresponds to the JSON property type

Returns:

  • (String)


900
901
902
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 900

def type
  @type
end

#type_detailsGoogle::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