class Google::Apis::YoutubePartnerV1::ValidateStatusResponse

Attributes

errors[RW]

The list of errors and/or warnings. Corresponds to the JSON property `errors` @return [Array<Google::Apis::YoutubePartnerV1::ValidateError>]

is_metadata_only[RW]

If this is a metadata-only package. Corresponds to the JSON property `isMetadataOnly` @return [Boolean]

is_metadata_only?[RW]

If this is a metadata-only package. Corresponds to the JSON property `isMetadataOnly` @return [Boolean]

kind[RW]

The type of the API resource. For this operation, the value is youtubePartner# validateStatusResponse. 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 4383
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 4388
def update!(**args)
  @errors = args[:errors] if args.key?(:errors)
  @is_metadata_only = args[:is_metadata_only] if args.key?(:is_metadata_only)
  @kind = args[:kind] if args.key?(:kind)
  @status = args[:status] if args.key?(:status)
end