Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1 KB

File metadata and controls

24 lines (18 loc) · 1 KB

UltracartClient::SfvbThemeAttributeUpdate

Properties

Name Type Description Notes
font SfvbThemeFont [optional]
name String Slot name. Matched without regard to case against what the theme already has, so you do not have to reproduce the exact casing. A name nothing matches creates a new slot. [optional]
type String Only consulted when creating a slot the theme does not already have. For a slot that exists the declared type always wins, because the templates decide it and not the caller. [optional]
value String The value to store. An empty string clears the slot, which makes it fall back to the theme's default rather than removing it. Ignored for a font when the font field is supplied. [optional]

Example

require 'ultracart_api'

instance = UltracartClient::SfvbThemeAttributeUpdate.new(
  font: null,
  name: null,
  type: null,
  value: null
)