UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

29 lines (28 loc) 1.29 kB
/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: unversioned * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { IoK8sApiAuthenticationV1UserInfo } from './'; /** * SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user. * @export * @interface IoK8sApiAuthenticationV1SelfSubjectReviewStatus */ export interface IoK8sApiAuthenticationV1SelfSubjectReviewStatus { /** * * @type {IoK8sApiAuthenticationV1UserInfo} * @memberof IoK8sApiAuthenticationV1SelfSubjectReviewStatus */ userInfo?: IoK8sApiAuthenticationV1UserInfo; } export declare function IoK8sApiAuthenticationV1SelfSubjectReviewStatusFromJSON(json: any): IoK8sApiAuthenticationV1SelfSubjectReviewStatus; export declare function IoK8sApiAuthenticationV1SelfSubjectReviewStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAuthenticationV1SelfSubjectReviewStatus; export declare function IoK8sApiAuthenticationV1SelfSubjectReviewStatusToJSON(value?: IoK8sApiAuthenticationV1SelfSubjectReviewStatus | null): any;