umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
39 lines (38 loc) • 1.45 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 DataTypePropertyReferenceModel
*/
export interface DataTypePropertyReferenceModel {
/**
*
* @type {string}
* @memberof DataTypePropertyReferenceModel
*/
name: string;
/**
*
* @type {string}
* @memberof DataTypePropertyReferenceModel
*/
alias: string;
}
/**
* Check if a given object implements the DataTypePropertyReferenceModel interface.
*/
export declare function instanceOfDataTypePropertyReferenceModel(value: object): value is DataTypePropertyReferenceModel;
export declare function DataTypePropertyReferenceModelFromJSON(json: any): DataTypePropertyReferenceModel;
export declare function DataTypePropertyReferenceModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataTypePropertyReferenceModel;
export declare function DataTypePropertyReferenceModelToJSON(json: any): DataTypePropertyReferenceModel;
export declare function DataTypePropertyReferenceModelToJSONTyped(value?: DataTypePropertyReferenceModel | null, ignoreDiscriminator?: boolean): any;