UNPKG

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

25 lines 1.17 kB
/** * Shell Card Management APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { nullable, number, object, optional, string } from '../schema'; export const cardDetailsResponsePINDeliveryAddressSchema = object({ contactForeName: ['ContactForeName', optional(nullable(string()))], contactMiddleName: ['ContactMiddleName', optional(nullable(string()))], contactLastName: ['ContactLastName', optional(nullable(string()))], contactTitle: ['ContactTitle', optional(nullable(string()))], companyName: ['CompanyName', string()], addressId: ['AddressId', number()], addressLine1: ['AddressLine1', string()], addressLine2: ['AddressLine2', optional(string())], addressLine3: ['AddressLine3', optional(string())], zipCode: ['ZipCode', string()], city: ['City', optional(string())], regionId: ['RegionId', optional(nullable(number()))], region: ['Region', optional(string())], countryId: ['CountryId', number()], countryISOCode: ['CountryISOCode', string()], country: ['Country', string()], }); //# sourceMappingURL=cardDetailsResponsePINDeliveryAddress.js.map