Class: Google::Apis::YoutubePartnerV1::ValidateResponse
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ValidateResponse
- 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
-
#errors ⇒ Array<Google::Apis::YoutubePartnerV1::ValidateError>
The list of errors and/or warnings.
-
#kind ⇒ String
The type of the API resource.
-
#status ⇒ String
The validation status.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ValidateResponse
constructor
A new instance of ValidateResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ValidateResponse
Returns a new instance of ValidateResponse
3996 3997 3998 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3996 def initialize(**args) update!(**args) end |
Instance Attribute Details
#errors ⇒ Array<Google::Apis::YoutubePartnerV1::ValidateError>
The list of errors and/or warnings.
Corresponds to the JSON property errors
3983 3984 3985 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3983 def errors @errors end |
#kind ⇒ String
The type of the API resource. For this operation, the value is youtubePartner#
validateResponse.
Corresponds to the JSON property kind
3989 3990 3991 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3989 def kind @kind end |
#status ⇒ String
The validation status.
Corresponds to the JSON property status
3994 3995 3996 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3994 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4001 4002 4003 4004 4005 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4001 def update!(**args) @errors = args[:errors] if args.key?(:errors) @kind = args[:kind] if args.key?(:kind) @status = args[:status] if args.key?(:status) end |