UNPKG

card-management-sdk

Version:

The Shell Card Management API is REST-based and employs OAUTH 2.0,Basic and ApiKey authentication. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes. All resources are located in the S

36 lines (35 loc) 944 B
/** * Shell Card Management APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; export interface InvoiceDistributionMethod { /** If True then this distribution method is the default distribution method. */ isPrimary?: boolean; /** * Frequency type unit Id & description * E.g.: * 1- Daily * 2-Weekly * 3-Monthly * 4-Invoicing * 6-Calendar quarter */ frequencyType?: string | null; /** * Invoice Distribution Method (Id-Description) * E.g.: * 1-e-mail * 2-Fax * 3-Courier to Customer * 4-Courier to Client * 5-Print * 6-FTP * 7-SMS */ distributionMethod?: string | null; /** Invoice output type (Id - Description) */ outputType?: string | null; } export declare const invoiceDistributionMethodSchema: Schema<InvoiceDistributionMethod>;