* update dependencies * update onboarding mdx * fixes for mdx issues * fixes for mdx compatibility * resolve mdx errors * fixes in reference * fix check errors * revert change in vale action * fix node version in action * fix summary in markdown
32 lines
706 B
Plaintext
32 lines
706 B
Plaintext
---
|
|
displayed_sidebar: servicesSidebar
|
|
---
|
|
|
|
import ParameterTypes from "@site/src/components/ParameterTypes"
|
|
|
|
# GiftCard
|
|
|
|
Gift Cards are redeemable and represent a value that can be used towards the payment of an Order.
|
|
|
|
## Constructors
|
|
|
|
### constructor
|
|
|
|
`**new GiftCard**()`
|
|
|
|
Gift Cards are redeemable and represent a value that can be used towards the payment of an Order.
|
|
|
|
## Properties
|
|
|
|
<ParameterTypes parameters={[
|
|
{
|
|
"name": "code",
|
|
"type": "`string`",
|
|
"description": "The unique code that identifies the Gift Card. This is used by the Customer to redeem the value of the Gift Card.",
|
|
"optional": false,
|
|
"defaultValue": "",
|
|
"expandable": false,
|
|
"children": []
|
|
}
|
|
]} />
|