/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * 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 { DecisionLogRead } from './DecisionLogRead.js'; /** * * @export * @interface ListVmDecisionLogRead */ export interface ListVmDecisionLogRead { /** * * @type {Array} * @memberof ListVmDecisionLogRead */ data?: Array; /** * * @type {number} * @memberof ListVmDecisionLogRead */ totalCount?: number; /** * * @type {number} * @memberof ListVmDecisionLogRead */ pageCount?: number; } /** * Check if a given object implements the ListVmDecisionLogRead interface. */ export declare function instanceOfListVmDecisionLogRead(value: object): value is ListVmDecisionLogRead; export declare function ListVmDecisionLogReadFromJSON(json: any): ListVmDecisionLogRead; export declare function ListVmDecisionLogReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListVmDecisionLogRead; export declare function ListVmDecisionLogReadToJSON(json: any): ListVmDecisionLogRead; export declare function ListVmDecisionLogReadToJSONTyped(value?: ListVmDecisionLogRead | null, ignoreDiscriminator?: boolean): any;