Class: Google::Apis::YoutubePartnerV1::ValidateRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ValidateRequest

Returns a new instance of ValidateRequest.



4258
4259
4260
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4258

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#contentString

The metadata file contents. Corresponds to the JSON property content

Returns:

  • (String)


4238
4239
4240
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4238

def content
  @content
end

#kindString

The type of the API resource. For this operation, the value is youtubePartner# validateRequest. Corresponds to the JSON property kind

Returns:

  • (String)


4244
4245
4246
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4244

def kind
  @kind
end

#localeString

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

Returns:

  • (String)


4251
4252
4253
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4251

def locale
  @locale
end

#uploader_nameString

The uploader name. Corresponds to the JSON property uploaderName

Returns:

  • (String)


4256
4257
4258
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4256

def uploader_name
  @uploader_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4263
4264
4265
4266
4267
4268
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4263

def update!(**args)
  @content = args[:content] if args.key?(:content)
  @kind = args[:kind] if args.key?(:kind)
  @locale = args[:locale] if args.key?(:locale)
  @uploader_name = args[:uploader_name] if args.key?(:uploader_name)
end