Class: Google::Apis::YoutubePartnerV1::ValidateResponse
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ValidateResponse
- 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
-
#errors ⇒ Array<Google::Apis::YoutubePartnerV1::ValidateError>
The list of errors and/or warnings.
-
#kind ⇒ String
The type of the API resource.
-
#status ⇒ String
The validation status.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ValidateResponse
constructor
A new instance of ValidateResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ValidateResponse
Returns a new instance of ValidateResponse.
4291 4292 4293 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4291 def initialize(**args) update!(**args) end |
Instance Attribute Details
#errors ⇒ Array<Google::Apis::YoutubePartnerV1::ValidateError>
The list of errors and/or warnings.
Corresponds to the JSON property errors
4278 4279 4280 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4278 def errors @errors end |
#kind ⇒ String
The type of the API resource. For this operation, the value is youtubePartner#
validateResponse.
Corresponds to the JSON property kind
4284 4285 4286 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4284 def kind @kind end |
#status ⇒ String
The validation status.
Corresponds to the JSON property status
4289 4290 4291 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4289 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4296 4297 4298 4299 4300 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4296 def update!(**args) @errors = args[:errors] if args.key?(:errors) @kind = args[:kind] if args.key?(:kind) @status = args[:status] if args.key?(:status) end |