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.
Constructor Details
#initialize(**args) ⇒ SpreadsheetTemplate
Returns a new instance of SpreadsheetTemplate.
3825 3826 3827 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3825 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
3803 3804 3805 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3803 def kind @kind end |
#status ⇒ String
The template status.
Corresponds to the JSON property status
3808 3809 3810 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3808 def status @status end |
#template_content ⇒ String
The template content.
Corresponds to the JSON property templateContent
3813 3814 3815 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3813 def template_content @template_content end |
#template_name ⇒ String
The template name.
Corresponds to the JSON property templateName
3818 3819 3820 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3818 def template_name @template_name end |
#template_type ⇒ String
The template type.
Corresponds to the JSON property templateType
3823 3824 3825 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3823 def template_type @template_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3830 3831 3832 3833 3834 3835 3836 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3830 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 |