mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-06 01:15:28 +02:00
180 lines
5.5 KiB
TypeScript
180 lines
5.5 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Unleash API
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 4.11.0-beta.2
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
import { exists, mapValues } from '../runtime';
|
|
import {
|
|
FeatureEnvironmentSchema,
|
|
FeatureEnvironmentSchemaFromJSON,
|
|
FeatureEnvironmentSchemaFromJSONTyped,
|
|
FeatureEnvironmentSchemaToJSON,
|
|
} from './FeatureEnvironmentSchema';
|
|
import {
|
|
StrategySchema,
|
|
StrategySchemaFromJSON,
|
|
StrategySchemaFromJSONTyped,
|
|
StrategySchemaToJSON,
|
|
} from './StrategySchema';
|
|
import {
|
|
VariantSchema,
|
|
VariantSchemaFromJSON,
|
|
VariantSchemaFromJSONTyped,
|
|
VariantSchemaToJSON,
|
|
} from './VariantSchema';
|
|
|
|
/**
|
|
*
|
|
* @export
|
|
* @interface FeatureSchema
|
|
*/
|
|
export interface FeatureSchema {
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
name: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
type?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
description?: string;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
archived?: boolean;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
project?: string;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
enabled?: boolean;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
stale?: boolean;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
impressionData?: boolean;
|
|
/**
|
|
*
|
|
* @type {Date}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
createdAt?: Date | null;
|
|
/**
|
|
*
|
|
* @type {Date}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
archivedAt?: Date | null;
|
|
/**
|
|
*
|
|
* @type {Date}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
lastSeenAt?: Date | null;
|
|
/**
|
|
*
|
|
* @type {Array<FeatureEnvironmentSchema>}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
environments?: Array<FeatureEnvironmentSchema>;
|
|
/**
|
|
*
|
|
* @type {Array<StrategySchema>}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
strategies?: Array<StrategySchema>;
|
|
/**
|
|
*
|
|
* @type {Array<VariantSchema>}
|
|
* @memberof FeatureSchema
|
|
*/
|
|
variants?: Array<VariantSchema>;
|
|
}
|
|
|
|
export function FeatureSchemaFromJSON(json: any): FeatureSchema {
|
|
return FeatureSchemaFromJSONTyped(json, false);
|
|
}
|
|
|
|
export function FeatureSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeatureSchema {
|
|
if ((json === undefined) || (json === null)) {
|
|
return json;
|
|
}
|
|
return {
|
|
|
|
'name': json['name'],
|
|
'type': !exists(json, 'type') ? undefined : json['type'],
|
|
'description': !exists(json, 'description') ? undefined : json['description'],
|
|
'archived': !exists(json, 'archived') ? undefined : json['archived'],
|
|
'project': !exists(json, 'project') ? undefined : json['project'],
|
|
'enabled': !exists(json, 'enabled') ? undefined : json['enabled'],
|
|
'stale': !exists(json, 'stale') ? undefined : json['stale'],
|
|
'impressionData': !exists(json, 'impressionData') ? undefined : json['impressionData'],
|
|
'createdAt': !exists(json, 'createdAt') ? undefined : (json['createdAt'] === null ? null : new Date(json['createdAt'])),
|
|
'archivedAt': !exists(json, 'archivedAt') ? undefined : (json['archivedAt'] === null ? null : new Date(json['archivedAt'])),
|
|
'lastSeenAt': !exists(json, 'lastSeenAt') ? undefined : (json['lastSeenAt'] === null ? null : new Date(json['lastSeenAt'])),
|
|
'environments': !exists(json, 'environments') ? undefined : ((json['environments'] as Array<any>).map(FeatureEnvironmentSchemaFromJSON)),
|
|
'strategies': !exists(json, 'strategies') ? undefined : ((json['strategies'] as Array<any>).map(StrategySchemaFromJSON)),
|
|
'variants': !exists(json, 'variants') ? undefined : ((json['variants'] as Array<any>).map(VariantSchemaFromJSON)),
|
|
};
|
|
}
|
|
|
|
export function FeatureSchemaToJSON(value?: FeatureSchema | null): any {
|
|
if (value === undefined) {
|
|
return undefined;
|
|
}
|
|
if (value === null) {
|
|
return null;
|
|
}
|
|
return {
|
|
|
|
'name': value.name,
|
|
'type': value.type,
|
|
'description': value.description,
|
|
'archived': value.archived,
|
|
'project': value.project,
|
|
'enabled': value.enabled,
|
|
'stale': value.stale,
|
|
'impressionData': value.impressionData,
|
|
'createdAt': value.createdAt === undefined ? undefined : (value.createdAt === null ? null : value.createdAt.toISOString().substr(0,10)),
|
|
'archivedAt': value.archivedAt === undefined ? undefined : (value.archivedAt === null ? null : value.archivedAt.toISOString().substr(0,10)),
|
|
'lastSeenAt': value.lastSeenAt === undefined ? undefined : (value.lastSeenAt === null ? null : value.lastSeenAt.toISOString().substr(0,10)),
|
|
'environments': value.environments === undefined ? undefined : ((value.environments as Array<any>).map(FeatureEnvironmentSchemaToJSON)),
|
|
'strategies': value.strategies === undefined ? undefined : ((value.strategies as Array<any>).map(StrategySchemaToJSON)),
|
|
'variants': value.variants === undefined ? undefined : ((value.variants as Array<any>).map(VariantSchemaToJSON)),
|
|
};
|
|
}
|
|
|