Class: Google::Apis::YoutubePartnerV1::ValidateRequest
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ValidateRequest
- 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
-
#content ⇒ String
The metadata file contents.
-
#kind ⇒ String
The type of the API resource.
-
#locale ⇒ String
The desired locale of the error messages as defined in BCP 47 (http://tools. ietf.org/html/bcp47).
-
#uploader_name ⇒ String
The uploader name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ValidateRequest
constructor
A new instance of ValidateRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ValidateRequest
Returns a new instance of ValidateRequest
3737 3738 3739 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3737 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ String
The metadata file contents.
Corresponds to the JSON property content
3717 3718 3719 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3717 def content @content end |
#kind ⇒ String
The type of the API resource. For this operation, the value is youtubePartner#
validateRequest.
Corresponds to the JSON property kind
3723 3724 3725 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3723 def kind @kind end |
#locale ⇒ String
The desired locale of the error messages as defined in BCP 47 (http://tools.
ietf.org/html/bcp47). For example, "en-US" or "de". If not specified we will
return the error messages in English ("en").
Corresponds to the JSON property locale
3730 3731 3732 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3730 def locale @locale end |
#uploader_name ⇒ String
The uploader name.
Corresponds to the JSON property uploaderName
3735 3736 3737 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3735 def uploader_name @uploader_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3742 3743 3744 3745 3746 3747 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3742 def update!(**args) @content = args[:content] if args.key?(:content) @kind = args[:kind] if args.key?(:kind) @locale = args[:locale] if args.key?(:locale) @uploader_name = args[:uploader_name] if args.key?(:uploader_name) end |