Class: Google::Apis::YoutubePartnerV1::ValidateStatusResponse
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ValidateStatusResponse
- 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.
-
#is_metadata_only ⇒ Boolean
(also: #is_metadata_only?)
If this is a metadata-only package.
-
#kind ⇒ String
The type of the API resource.
-
#status ⇒ String
The validation status.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ValidateStatusResponse
constructor
A new instance of ValidateStatusResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ValidateStatusResponse
Returns a new instance of ValidateStatusResponse
4068 4069 4070 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4068 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
4049 4050 4051 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4049 def errors @errors end |
#is_metadata_only ⇒ Boolean Also known as: is_metadata_only?
If this is a metadata-only package.
Corresponds to the JSON property isMetadataOnly
4054 4055 4056 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4054 def @is_metadata_only end |
#kind ⇒ String
The type of the API resource. For this operation, the value is youtubePartner#
validateStatusResponse.
Corresponds to the JSON property kind
4061 4062 4063 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4061 def kind @kind end |
#status ⇒ String
The validation status.
Corresponds to the JSON property status
4066 4067 4068 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4066 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4073 4074 4075 4076 4077 4078 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4073 def update!(**args) @errors = args[:errors] if args.key?(:errors) @is_metadata_only = args[:is_metadata_only] if args.key?(:is_metadata_only) @kind = args[:kind] if args.key?(:kind) @status = args[:status] if args.key?(:status) end |