/**
 * PostNL Ecommerce APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */

import { Schema, stringEnum } from '../schema';

/**
 * Enum for CurrencyEnum
 */
export enum CurrencyEnum {
  EUR = 'EUR',
  GBP = 'GBP',
  USD = 'USD',
  CNY = 'CNY',
}

/**
 * Schema for CurrencyEnum
 */
export const currencyEnumSchema: Schema<CurrencyEnum> = stringEnum(CurrencyEnum);
