# `PolarExpress.Schemas.ProductPriceFixedCreate`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/product_price_fixed_create.ex#L2)

ProductPriceFixedCreate

Schema to create a fixed price.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.ProductPriceFixedCreate{
  amount_type: String.t() | nil,
  price_amount: integer() | nil,
  price_currency: PolarExpress.Schemas.PresentmentCurrency.t() | nil,
  tax_behavior: PolarExpress.Schemas.TaxBehaviorOption.t() | nil
}
```

* `amount_type`
* `price_amount` - The price in cents.
Minimum amounts per currency:
- USD: $0.50
- AED: AED2.00
- ARS: ARS0.50
- AUD: A$0.50
- BRL: R$0.50
- CAD: CA$0.50
- CHF: CHF0.50
- COP: COP0.50
- CZK: CZK15.00
- DKK: DKK2.50
- EUR: €0.50
- GBP: £0.30
- HKD: HK$4.00
- HUF: HUF175.00
- IDR: IDR0.50
- ILS: ₪0.50
- INR: ₹60.00
- JPY: ¥50
- KRW: ₩50
- MXN: MX$0.10
- MYR: MYR2.00
- NOK: NOK3.00
- NZD: NZ$0.50
- PHP: ₱0.50
- PLN: PLN2.00
- RON: RON2.00
- RUB: RUB0.50
- SEK: SEK3.00
- SGD: SGD0.50
- THB: THB0.10
- ZAR: ZAR0.50
* `price_currency` - The currency in which the customer will be charged.
* `tax_behavior` - The tax behavior of the price. If not set, it will default to the organization's default tax behavior. Nullable.

# `schema_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
