UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

46 lines (45 loc) 1.76 kB
/** * 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. */ import type { ReferenceByIdModel } from './ReferenceByIdModel'; /** * * @export * @interface CreateInitialPasswordUserRequestModel */ export interface CreateInitialPasswordUserRequestModel { /** * * @type {ReferenceByIdModel} * @memberof CreateInitialPasswordUserRequestModel */ user: ReferenceByIdModel; /** * * @type {string} * @memberof CreateInitialPasswordUserRequestModel */ token: string; /** * * @type {string} * @memberof CreateInitialPasswordUserRequestModel */ password: string; } /** * Check if a given object implements the CreateInitialPasswordUserRequestModel interface. */ export declare function instanceOfCreateInitialPasswordUserRequestModel(value: object): value is CreateInitialPasswordUserRequestModel; export declare function CreateInitialPasswordUserRequestModelFromJSON(json: any): CreateInitialPasswordUserRequestModel; export declare function CreateInitialPasswordUserRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateInitialPasswordUserRequestModel; export declare function CreateInitialPasswordUserRequestModelToJSON(json: any): CreateInitialPasswordUserRequestModel; export declare function CreateInitialPasswordUserRequestModelToJSONTyped(value?: CreateInitialPasswordUserRequestModel | null, ignoreDiscriminator?: boolean): any;