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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ValidateStatusRequest
Returns a new instance of ValidateStatusRequest
4030 4031 4032 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4030 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
4016 4017 4018 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4016 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
4023 4024 4025 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4023 def locale @locale end |
#validation_id ⇒ String
The validation ID.
Corresponds to the JSON property validationId
4028 4029 4030 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4028 def validation_id @validation_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4035 4036 4037 4038 4039 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4035 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 |