umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
51 lines (50 loc) • 1.67 kB
TypeScript
/**
* Umbraco Management API
* This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility
*
* The version of the OpenAPI document: Latest
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface PropertyTypeValidationModel
*/
export interface PropertyTypeValidationModel {
/**
*
* @type {boolean}
* @memberof PropertyTypeValidationModel
*/
mandatory: boolean;
/**
*
* @type {string}
* @memberof PropertyTypeValidationModel
*/
mandatoryMessage?: string | null;
/**
*
* @type {string}
* @memberof PropertyTypeValidationModel
*/
regEx?: string | null;
/**
*
* @type {string}
* @memberof PropertyTypeValidationModel
*/
regExMessage?: string | null;
}
/**
* Check if a given object implements the PropertyTypeValidationModel interface.
*/
export declare function instanceOfPropertyTypeValidationModel(value: object): value is PropertyTypeValidationModel;
export declare function PropertyTypeValidationModelFromJSON(json: any): PropertyTypeValidationModel;
export declare function PropertyTypeValidationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyTypeValidationModel;
export declare function PropertyTypeValidationModelToJSON(json: any): PropertyTypeValidationModel;
export declare function PropertyTypeValidationModelToJSONTyped(value?: PropertyTypeValidationModel | null, ignoreDiscriminator?: boolean): any;