import { PhoneConfigurationLevelEnum } from './PhoneConfigurationLevelEnum';
import { RangeLong } from '../complexType/RangeLong';
import { PhoneConfigurationTypeEnum } from './PhoneConfigurationTypeEnum';
/** Phone configuration property */
export interface PhoneConfigurationProperty {
    /** Default property value */
    default?: string;
    /** Property description */
    description?: string;
    /** Property value possibilities */
    enum?: string[];
    /** The property group */
    group?: string;
    /** Provisioning level */
    level?: PhoneConfigurationLevelEnum;
    /** Max string chars */
    maxlength?: number;
    /** The property name */
    name?: string;
    /** Range property value */
    rangeValue?: RangeLong;
    /** Provisioning type */
    type?: PhoneConfigurationTypeEnum;
    /** Current property value */
    value?: string;
}
//# sourceMappingURL=PhoneConfigurationProperty.d.ts.map