Name | Type | Description | Notes |
---|---|---|---|
title | String | Update the page title. | [optional] |
type | String | Change the type of page. | [optional] |
meta_title | String | Update the meta title for this page, this appears in the title bar of the browser. | [optional] |
meta_description | String | Update the meta description, used for SEO and displayed in search results. | [optional] |
visible | Boolean | This page is publicly visible when set to `true`. | [optional] |
slug | String | Update the slug for this page. | [optional] |
locale | String | Update the language of this page. | [optional] |
require 'spree_client'
instance = SpreeClient::UpdateFeatureCmsPageParamsCmsPage.new(
title: Featured Product,
type: null,
meta_title: Learn More About This Featured Product,
meta_description: Learn more about us this amazing product that we sell right here...,
visible: null,
slug: about-us,
locale: en-US
)