class Google::Apis::YoutubePartnerV1::ValidateResponse
Attributes
errors[RW]
The list of errors and/or warnings. Corresponds to the JSON property `errors` @return [Array<Google::Apis::YoutubePartnerV1::ValidateError>]
kind[RW]
The type of the API resource. For this operation, the value is youtubePartner# validateResponse. Corresponds to the JSON property `kind` @return [String]
status[RW]
The validation status. Corresponds to the JSON property `status` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_partner_v1/classes.rb, line 4311 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/youtube_partner_v1/classes.rb, line 4316 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