Class: Google::Apis::YoutubePartnerV1::ValidateAsyncRequest
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ValidateAsyncRequest
- 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.
-
#uploader_name ⇒ String
The uploader name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ValidateAsyncRequest
constructor
A new instance of ValidateAsyncRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ValidateAsyncRequest
Returns a new instance of ValidateAsyncRequest
3824 3825 3826 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3824 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ String
The metadata file contents.
Corresponds to the JSON property content
3811 3812 3813 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3811 def content @content end |
#kind ⇒ String
The type of the API resource. For this operation, the value is youtubePartner#
validateAsyncRequest.
Corresponds to the JSON property kind
3817 3818 3819 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3817 def kind @kind end |
#uploader_name ⇒ String
The uploader name.
Corresponds to the JSON property uploaderName
3822 3823 3824 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3822 def uploader_name @uploader_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3829 3830 3831 3832 3833 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3829 def update!(**args) @content = args[:content] if args.key?(:content) @kind = args[:kind] if args.key?(:kind) @uploader_name = args[:uploader_name] if args.key?(:uploader_name) end |