Class: Google::Apis::YoutubeV3::VideoAbuseReportReason

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/youtube_v3/classes.rb,
generated/google/apis/youtube_v3/representations.rb,
generated/google/apis/youtube_v3/representations.rb

Overview

A videoAbuseReportReason resource identifies a reason that a video could be reported as abusive. Video abuse report reasons are used with video. ReportAbuse.

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

Returns a new instance of VideoAbuseReportReason.



7514
7515
7516
# File 'generated/google/apis/youtube_v3/classes.rb', line 7514

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


7496
7497
7498
# File 'generated/google/apis/youtube_v3/classes.rb', line 7496

def etag
  @etag
end

#idString

The ID of this abuse report reason. Corresponds to the JSON property id

Returns:

  • (String)


7501
7502
7503
# File 'generated/google/apis/youtube_v3/classes.rb', line 7501

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "youtube# videoAbuseReportReason". Corresponds to the JSON property kind

Returns:

  • (String)


7507
7508
7509
# File 'generated/google/apis/youtube_v3/classes.rb', line 7507

def kind
  @kind
end

#snippetGoogle::Apis::YoutubeV3::VideoAbuseReportReasonSnippet

Basic details about a video category, such as its localized title. Corresponds to the JSON property snippet



7512
7513
7514
# File 'generated/google/apis/youtube_v3/classes.rb', line 7512

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7519
7520
7521
7522
7523
7524
# File 'generated/google/apis/youtube_v3/classes.rb', line 7519

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @snippet = args[:snippet] if args.key?(:snippet)
end