Class: Google::Apis::YoutubePartnerV1::ValidateStatusRequest
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ValidateStatusRequest
- 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
-
#kind ⇒ String
The type of the API resource.
-
#locale ⇒ String
The desired locale of the error messages as defined in BCP 47 (http: //tools. ietf.org/html/bcp47).
-
#validation_id ⇒ String
The validation ID.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ValidateStatusRequest
constructor
A new instance of ValidateStatusRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ValidateStatusRequest
Returns a new instance of ValidateStatusRequest.
4325 4326 4327 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4325 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
The type of the API resource. For this operation, the value is youtubePartner#
validateStatusRequest.
Corresponds to the JSON property kind
4311 4312 4313 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4311 def kind @kind end |
#locale ⇒ String
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
4318 4319 4320 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4318 def locale @locale end |
#validation_id ⇒ String
The validation ID.
Corresponds to the JSON property validationId
4323 4324 4325 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4323 def validation_id @validation_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4330 4331 4332 4333 4334 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4330 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 |