data-and-reporting-sdk
Version:
Data And Reporting product consists of API's which provides details of transaction and invoice informations about shell cards. The Shell Card Transaction and Invoice API is REST-based and employs Basic authentication in Version 1 and Oauth authentication
34 lines (33 loc) • 1.03 kB
TypeScript
/**
* Shell Data & Reporting APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
export interface Address {
/** Address Id in cards platform. */
addressId?: number | null;
/** Address line1 */
addressLine1?: string | null;
/** Address line2 */
addressLine2?: string | null;
/** AddressLine3 */
addressLine3?: string | null;
/** ZipCode */
zipCode?: string | null;
/** City */
city?: string | null;
/** Region Id of the address. */
regionId?: number | null;
/** Country ISO code of the address */
countryISOCode?: string | null;
/** Country for the address */
country?: string | null;
/** Telephone number of the address contact */
telephone?: string | null;
/** Email address of the address contact */
emailAddress?: string | null;
/** Fax number of the address contact */
fax?: string | null;
}
export declare const addressSchema: Schema<Address>;