Class: Google::Apis::YoutubePartnerV1::ValidateAsyncResponse
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ValidateAsyncResponse
- 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.
-
#status ⇒ String
The validation status.
-
#validation_id ⇒ String
The validation ID.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ValidateAsyncResponse
constructor
A new instance of ValidateAsyncResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ValidateAsyncResponse
Returns a new instance of ValidateAsyncResponse.
4170 4171 4172 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4170 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
The type of the API resource. For this operation, the value is youtubePartner#
validateAsyncResponse.
Corresponds to the JSON property kind
4158 4159 4160 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4158 def kind @kind end |
#status ⇒ String
The validation status.
Corresponds to the JSON property status
4163 4164 4165 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4163 def status @status end |
#validation_id ⇒ String
The validation ID.
Corresponds to the JSON property validationId
4168 4169 4170 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4168 def validation_id @validation_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4175 4176 4177 4178 4179 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4175 def update!(**args) @kind = args[:kind] if args.key?(:kind) @status = args[:status] if args.key?(:status) @validation_id = args[:validation_id] if args.key?(:validation_id) end |