Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 726 Bytes

UpdateTaxonomyParamsTaxonomy.md

File metadata and controls

24 lines (18 loc) · 726 Bytes

SpreeClient::UpdateTaxonomyParamsTaxonomy

Properties

Name Type Description Notes
name String [optional]
position Integer Pass the position that you want this Taxonomy to appear in. (The list is not zero indexed, so the first item is position: `1`) [optional]
public_metadata Object [optional]
private_metadata Object [optional]

Example

require 'spree_client'

instance = SpreeClient::UpdateTaxonomyParamsTaxonomy.new(
  name: null,
  position: 2,
  public_metadata: {"ability_to_recycle":"90%"},
  private_metadata: {"profitability":2}
)