/** @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',
}
