/** * Account Management Service API * Manage user subscriptions and clusters * * The version of the OpenAPI document: 0.0.1 * * * 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 SupportCasesRequest */ export interface SupportCasesRequest { /** * * @type {string} * @memberof SupportCasesRequest */ 'account_number'?: string; /** * * @type {string} * @memberof SupportCasesRequest */ 'case_language'?: string; /** * * @type {string} * @memberof SupportCasesRequest */ 'cluster_id'?: string; /** * * @type {string} * @memberof SupportCasesRequest */ 'cluster_uuid'?: string; /** * * @type {string} * @memberof SupportCasesRequest */ 'contact_sso_name'?: string; /** * * @type {string} * @memberof SupportCasesRequest */ 'description': string; /** * * @type {string} * @memberof SupportCasesRequest */ 'event_stream_id'?: string; /** * * @type {string} * @memberof SupportCasesRequest */ 'openshift_cluster_id'?: string; /** * * @type {string} * @memberof SupportCasesRequest */ 'product'?: string; /** * * @type {string} * @memberof SupportCasesRequest */ 'severity': SupportCasesRequestSeverityEnum; /** * * @type {string} * @memberof SupportCasesRequest */ 'subscription_id'?: string; /** * * @type {string} * @memberof SupportCasesRequest */ 'summary': string; /** * * @type {string} * @memberof SupportCasesRequest */ 'version'?: string; } export declare const SupportCasesRequestSeverityEnum: { readonly _1Urgent: "1 (Urgent)"; readonly _2High: "2 (High)"; readonly _3Normal: "3 (Normal)"; readonly _4Low: "4 (Low)"; }; export type SupportCasesRequestSeverityEnum = typeof SupportCasesRequestSeverityEnum[keyof typeof SupportCasesRequestSeverityEnum];