/**
 * Paypal Server SDKLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */

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

/**
 * Enum for PaymentAdviceCode
 */
export enum PaymentAdviceCode {
  Enum01 = '01',
  Enum02 = '02',
  Enum03 = '03',
  Enum21 = '21',
}

/**
 * Schema for PaymentAdviceCode
 */
export const paymentAdviceCodeSchema: Schema<PaymentAdviceCode> = stringEnum(
  PaymentAdviceCode,
  true
);
