umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
59 lines (58 loc) • 1.81 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.
*/
import type { AuditTypeModel } from './AuditTypeModel';
import type { ReferenceByIdModel } from './ReferenceByIdModel';
/**
*
* @export
* @interface AuditLogResponseModel
*/
export interface AuditLogResponseModel {
/**
*
* @type {ReferenceByIdModel}
* @memberof AuditLogResponseModel
*/
user: ReferenceByIdModel;
/**
*
* @type {Date}
* @memberof AuditLogResponseModel
*/
timestamp: Date;
/**
*
* @type {AuditTypeModel}
* @memberof AuditLogResponseModel
*/
logType: AuditTypeModel;
/**
*
* @type {string}
* @memberof AuditLogResponseModel
*/
comment?: string | null;
/**
*
* @type {string}
* @memberof AuditLogResponseModel
*/
parameters?: string | null;
}
/**
* Check if a given object implements the AuditLogResponseModel interface.
*/
export declare function instanceOfAuditLogResponseModel(value: object): value is AuditLogResponseModel;
export declare function AuditLogResponseModelFromJSON(json: any): AuditLogResponseModel;
export declare function AuditLogResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuditLogResponseModel;
export declare function AuditLogResponseModelToJSON(json: any): AuditLogResponseModel;
export declare function AuditLogResponseModelToJSONTyped(value?: AuditLogResponseModel | null, ignoreDiscriminator?: boolean): any;