@rqt/namecheap
Version:
An Implementation Of The Namecheap.com API.
35 lines (33 loc) • 1.43 kB
JavaScript
export {}
/* typal types/api/address/get-list.xml noSuppress */
/**
* @typedef {_namecheap.Address} Address
*/
/**
* @typedef {Object} _namecheap.Address
* @prop {number} AddressId A unique integer value that represents the address profile.
* @prop {number} AddressName The name of the address profile.
* @prop {boolean} IsDefault Whether it is a default address.
*/
/* typal types/api/address/get-info.xml noSuppress */
/**
* @typedef {_namecheap.AddressDetail} AddressDetail
*/
/**
* @typedef {Object} _namecheap.AddressDetail
* @prop {string} EmailAddress Email address of the user.
* @prop {string} FirstName First name of the user.
* @prop {string} LastName Last name of the user.
* @prop {string} [JobTitle] Job designation of the user
* @prop {string} [Organization] Organization of the user.
* @prop {string} Address1 StreetAddress1 of the user.
* @prop {string} [Address2] StreetAddress2 of the user.
* @prop {string} City City of the user.
* @prop {string} StateProvince State/Province of the user.
* @prop {string} StateProvinceChoice State/Province choice of the user. Either `'S'` or `'P'`.
* @prop {string} Zip Zip/Postal code of the user.
* @prop {string} Country Two letter country code of the user.
* @prop {string} Phone Phone number in the format `+NNN.NNNNNNNNNN`.
* @prop {string} [PhoneExt] PhoneExt of the user.
* @prop {string} [Fax] Fax number in the format `+NNN.NNNNNNNNNN`.
*/