/** * 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. */ /** * * @export * @interface ResourceInstanceRoleVm */ export interface ResourceInstanceRoleVm { /** * * @type {string} * @memberof ResourceInstanceRoleVm */ resource?: string; /** * * @type {string} * @memberof ResourceInstanceRoleVm */ resourceInstance?: string; /** * * @type {string} * @memberof ResourceInstanceRoleVm */ role?: string; } /** * Check if a given object implements the ResourceInstanceRoleVm interface. */ export declare function instanceOfResourceInstanceRoleVm(value: object): value is ResourceInstanceRoleVm; export declare function ResourceInstanceRoleVmFromJSON(json: any): ResourceInstanceRoleVm; export declare function ResourceInstanceRoleVmFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceInstanceRoleVm; export declare function ResourceInstanceRoleVmToJSON(json: any): ResourceInstanceRoleVm; export declare function ResourceInstanceRoleVmToJSONTyped(value?: ResourceInstanceRoleVm | null, ignoreDiscriminator?: boolean): any;