wallee
Version:
TypeScript/JavaScript client for wallee
32 lines (31 loc) • 843 B
TypeScript
import { RestAddressFormatField } from "./RestAddressFormatField";
declare class RestAddressFormat {
/**
* A list of sample post codes.
*/
'postCodeExamples'?: Array<string>;
/**
* The regular expression to validate post codes.
*/
'postCodeRegex'?: string;
/**
* The fields that are required in the address format.
*/
'requiredFields'?: Array<RestAddressFormatField>;
/**
* The fields that are used in the address format.
*/
'usedFields'?: Array<RestAddressFormatField>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { RestAddressFormat };