class Google::Apis::YoutubePartnerV1::SpreadsheetTemplate

Attributes

kind[RW]

The type of the API resource. For spreadsheet template resources, the value is youtubePartner#spreadsheetTemplate. Corresponds to the JSON property `kind` @return [String]

status[RW]

The template status. Corresponds to the JSON property `status` @return [String]

template_content[RW]

The template content. Corresponds to the JSON property `templateContent` @return [String]

template_name[RW]

The template name. Corresponds to the JSON property `templateName` @return [String]

template_type[RW]

The template type. Corresponds to the JSON property `templateType` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_partner_v1/classes.rb, line 3845
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/youtube_partner_v1/classes.rb, line 3850
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