class Google::Apis::YoutubePartnerV1::ValidateStatusRequest

Attributes

kind[RW]

The type of the API resource. For this operation, the value is youtubePartner# validateStatusRequest. Corresponds to the JSON property `kind` @return [String]

locale[RW]

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` @return [String]

validation_id[RW]

The validation ID. Corresponds to the JSON property `validationId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_partner_v1/classes.rb, line 4345
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 4350
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @locale = args[:locale] if args.key?(:locale)
  @validation_id = args[:validation_id] if args.key?(:validation_id)
end