Class: Google::Apis::YoutubePartnerV1::SpreadsheetTemplate
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::SpreadsheetTemplate
- 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 template status.
-
#template_content ⇒ String
The template content.
-
#template_name ⇒ String
The template name.
-
#template_type ⇒ String
The template type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SpreadsheetTemplate
constructor
A new instance of SpreadsheetTemplate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SpreadsheetTemplate
Returns a new instance of SpreadsheetTemplate
3569 3570 3571 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3569 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
The type of the API resource. For spreadsheet template resources, the value is
youtubePartner#spreadsheetTemplate.
Corresponds to the JSON property kind
3547 3548 3549 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3547 def kind @kind end |
#status ⇒ String
The template status.
Corresponds to the JSON property status
3552 3553 3554 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3552 def status @status end |
#template_content ⇒ String
The template content.
Corresponds to the JSON property templateContent
3557 3558 3559 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3557 def template_content @template_content end |
#template_name ⇒ String
The template name.
Corresponds to the JSON property templateName
3562 3563 3564 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3562 def template_name @template_name end |
#template_type ⇒ String
The template type.
Corresponds to the JSON property templateType
3567 3568 3569 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3567 def template_type @template_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3574 3575 3576 3577 3578 3579 3580 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3574 def update!(**args) @kind = args[:kind] if args.key?(:kind) @status = args[:status] if args.key?(:status) @template_content = args[:template_content] if args.key?(:template_content) @template_name = args[:template_name] if args.key?(:template_name) @template_type = args[:template_type] if args.key?(:template_type) end |