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
66 lines (62 loc) • 1.97 kB
text/typescript
/**
* Shell Card Management APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { number, object, optional, Schema, string } from '../schema';
export interface DeleteBundleRequest {
/**
* Collecting Company Code (Shell Code) of the selected payer.
* Mandatory for serviced OUs such as Romania, Latvia, Lithuania, Estonia, Ukraine etc. It is optional for other countries if ColCoID is provided.
* Example:
* 86 for Philippines
* 5 for UK
*/
colCoCode?: number;
/**
* Collecting Company Code (Shell Code) of the selected payer.
* Mandatory for serviced OUs such as Romania, Latvia, Lithuania, Estonia, Ukraine etc. It is optional for other countries if ColCoID is provided.
* Example:
* 86 for Philippines
* 5 for UK
*/
colCoId?: number;
/**
* Payer Number of the selected payer.
* Either PayerId or PayerNumber or both must be passed.
* Example: GB000000123
*/
payerNumber?: string;
/**
* Payer Id of the selected payer.
* Either PayerId or PayerNumber or both must be passed.
* Example: 123456
*/
payerId?: number;
/**
* Account ID of the customer.
* Either AccountId or AccountNumber or both must be passed.
* Example: 123456
*/
accountId?: number;
/**
* Account Number of the customer.
* Either AccountId or AccountNumber or both must be passed.
* Example: GB000000123
*/
accountNumber?: string;
/**
* Identifier of the card bundle in Gateway.
* Mandatory
*/
bundleId: string;
}
export const deleteBundleRequestSchema: Schema<DeleteBundleRequest> = object({
colCoCode: ['ColCoCode', optional(number())],
colCoId: ['ColCoId', optional(number())],
payerNumber: ['PayerNumber', optional(string())],
payerId: ['PayerId', optional(number())],
accountId: ['AccountId', optional(number())],
accountNumber: ['AccountNumber', optional(string())],
bundleId: ['BundleId', string()],
});