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
21 lines • 1 kB
JavaScript
/**
* Shell Data & Reporting APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { nullable, number, object, optional, string } from '../schema';
export const addressSchema = object({
addressId: ['AddressId', optional(nullable(number()))],
addressLine1: ['AddressLine1', optional(nullable(string()))],
addressLine2: ['AddressLine2', optional(nullable(string()))],
addressLine3: ['AddressLine3', optional(nullable(string()))],
zipCode: ['ZipCode', optional(nullable(string()))],
city: ['City', optional(nullable(string()))],
regionId: ['RegionId', optional(nullable(number()))],
countryISOCode: ['CountryISOCode', optional(nullable(string()))],
country: ['Country', optional(nullable(string()))],
telephone: ['Telephone', optional(nullable(string()))],
emailAddress: ['EmailAddress', optional(nullable(string()))],
fax: ['Fax', optional(nullable(string()))],
});
//# sourceMappingURL=address.js.map