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
4049 4050 4051 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4049 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
4030 4031 4032 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4030 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
4035 4036 4037 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4035 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
4042 4043 4044 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4042 def kind @kind end |
#status ⇒ String
The validation status.
Corresponds to the JSON property status
4047 4048 4049 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4047 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4054 4055 4056 4057 4058 4059 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4054 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 |