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
26 lines (25 loc) • 908 B
TypeScript
/**
* Shell Card Management APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
export interface AccountAccess {
/** Collecting company id. */
colcoId?: number | null;
/** Collecting company code. */
colcoCode?: number | null;
/** Payer Id to which the user has access */
payerId?: number | null;
/** Payer Number to which the user has access */
payerNumber?: string | null;
/** Name of the Payer to which the user has access */
payerName?: string | null;
/** Account Id to which the user has access */
accountId?: number | null;
/** Account Number to which the user has access */
accountNumber?: string;
/** Name of the Account to which the user has access */
accountName?: string | null;
}
export declare const accountAccessSchema: Schema<AccountAccess>;