import * as Enums from '../enums/index'; /** * Information about questions that the local jurisdictions require for each location * @export * @class LocationQuestionModel */ export declare class LocationQuestionModel { /** * @type {number} * @memberof LocationQuestionModel */ id: number; /** * @type {string} * @memberof LocationQuestionModel */ question: string; /** * @type {string} * @memberof LocationQuestionModel */ description: string; /** * @type {string} * @memberof LocationQuestionModel */ regularExpression?: string | undefined; /** * @type {string} * @memberof LocationQuestionModel */ exampleValue?: string | undefined; /** * @type {string} * @memberof LocationQuestionModel */ jurisdictionName?: string | undefined; /** * @type {Enums.JurisdictionType} * @memberof LocationQuestionModel */ jurisdictionType?: Enums.JurisdictionType | undefined; /** * @type {string} * @memberof LocationQuestionModel */ jurisdictionCountry?: string | undefined; /** * @type {string} * @memberof LocationQuestionModel */ jurisdictionRegion?: string | undefined; /** * @type {string} * @memberof LocationQuestionModel */ helpText?: string | undefined; /** * @type {number} * @memberof LocationQuestionModel */ maxLength?: number | undefined; /** * @type {boolean} * @memberof LocationQuestionModel */ required?: boolean | undefined; /** * @type {string} * @memberof LocationQuestionModel */ dataType?: string | undefined; /** * @type {string} * @memberof LocationQuestionModel */ staticOptions?: string | undefined; /** * @type {boolean} * @memberof LocationQuestionModel */ unique?: boolean | undefined; }