@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
10 lines (9 loc) • 452 B
text/typescript
/** @description Used for indicating whether an address is residential or commercial */
export enum AddressResidentialIndicator {
/** @description Indicates that it is unknown whether or not the address is in a residential or commercial area */
Unknown = 'unknown',
/** @description Indicates that the address is in a residential area */
Yes = 'yes',
/** @description Indicates that the address is not in a residential area */
No = 'no',
}