UpdateDistributionRequest.ts•1.82 kB
/**
* api
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 1.47.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { HttpFile } from '../http/http';
export class UpdateDistributionRequest {
'id'?: string;
'flagKey'?: string;
'ruleId'?: string;
'variantId': string;
'rollout': number;
'namespaceKey'?: string;
static readonly discriminator: string | undefined = undefined;
static readonly mapping: {[index: string]: string} | undefined = undefined;
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "id",
"baseName": "id",
"type": "string",
"format": ""
},
{
"name": "flagKey",
"baseName": "flagKey",
"type": "string",
"format": ""
},
{
"name": "ruleId",
"baseName": "ruleId",
"type": "string",
"format": ""
},
{
"name": "variantId",
"baseName": "variantId",
"type": "string",
"format": ""
},
{
"name": "rollout",
"baseName": "rollout",
"type": "number",
"format": "float"
},
{
"name": "namespaceKey",
"baseName": "namespaceKey",
"type": "string",
"format": ""
} ];
static getAttributeTypeMap() {
return UpdateDistributionRequest.attributeTypeMap;
}
public constructor() {
}
}