umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
45 lines (44 loc) • 1.3 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 UserDataModel
*/
export interface UserDataModel {
/**
*
* @type {string}
* @memberof UserDataModel
*/
group: string;
/**
*
* @type {string}
* @memberof UserDataModel
*/
identifier: string;
/**
*
* @type {string}
* @memberof UserDataModel
*/
value: string;
}
/**
* Check if a given object implements the UserDataModel interface.
*/
export declare function instanceOfUserDataModel(value: object): value is UserDataModel;
export declare function UserDataModelFromJSON(json: any): UserDataModel;
export declare function UserDataModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserDataModel;
export declare function UserDataModelToJSON(json: any): UserDataModel;
export declare function UserDataModelToJSONTyped(value?: UserDataModel | null, ignoreDiscriminator?: boolean): any;