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

Defined Under Namespace

Classes: Source, TypeDetails

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) ⇒ ClaimEvent

Returns a new instance of ClaimEvent.



985
986
987
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 985

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)


958
959
960
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 958

def kind
  @kind
end

#reasonString

Reason of the event. Corresponds to the JSON property reason

Returns:

  • (String)


963
964
965
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 963

def reason
  @reason
end

#sourceGoogle::Apis::YoutubePartnerV1::ClaimEvent::Source

Data related to source of the event. Corresponds to the JSON property source



968
969
970
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 968

def source
  @source
end

#timeDateTime

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

Returns:

  • (DateTime)


973
974
975
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 973

def time
  @time
end

#typeString

Type of the event. Corresponds to the JSON property type

Returns:

  • (String)


978
979
980
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 978

def type
  @type
end

#type_detailsGoogle::Apis::YoutubePartnerV1::ClaimEvent::TypeDetails

Details of event's type. Corresponds to the JSON property typeDetails



983
984
985
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 983

def type_details
  @type_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



990
991
992
993
994
995
996
997
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 990

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