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
54 lines (53 loc) • 1.67 kB
TypeScript
/**
* Shell Card Management APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
export interface DeliveryAddresses {
/** Address Id */
addressId?: number | null;
/** AddressLine1 */
addressLine1?: string | null;
/** AddressLine2 */
addressLine2?: string | null;
/** AddressLine3 */
addressLine3?: string | null;
/** City */
city?: string | null;
/** Account Name */
companyName?: string | null;
/** Contact fore name of the delivery address. */
contactForeName?: string | null;
/** Contact last name of the delivery address. */
contactLastName?: string | null;
/** Contact middle name of the delivery address. */
contactMiddleName?: string | null;
/** ContactTitle */
contactTitle?: string | null;
/** Country */
country?: string | null;
/** Country Id */
countryId?: number | null;
/** Country ISO code */
countryISOCode?: string | null;
/** Fax number of the address contact. */
fax?: string | null;
/** Region of the Card Delivery address */
region?: string | null;
/** Region Id of the address. */
regionId?: number | null;
/** Telephone number of the address contact */
telephone?: string | null;
/** Delivery Zip code */
zipCode?: string | null;
/**
* Delivery address type.
* Possible Values:
* 1 – Card and PIN delivery address
* 2 – Card delivery address
* 3 – PIN delivery address
*/
addressType?: number | null;
}
export declare const deliveryAddressesSchema: Schema<DeliveryAddresses>;