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
3759 3760 3761 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3759 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
3746 3747 3748 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3746 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
3752 3753 3754 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3752 def kind @kind end |
#status ⇒ String
The validation status.
Corresponds to the JSON property status
3757 3758 3759 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3757 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3764 3765 3766 3767 3768 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3764 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 |