@apideck/node
Version:
Apideck Node.js SDK
91 lines (90 loc) • 2.37 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { Currency } from './Currency';
import { PassThroughBody } from './PassThroughBody';
import { PipelineStages } from './PipelineStages';
/**
*
* @export
* @interface Pipeline
*/
export interface Pipeline {
/**
* The name of the Pipeline.
* @type {string}
* @memberof Pipeline
*/
name: string;
/**
* The unique identifier of the Pipeline.
* @type {string}
* @memberof Pipeline
*/
id?: string;
/**
*
* @type {Currency}
* @memberof Pipeline
*/
currency?: Currency | null;
/**
* Whether the Pipeline is archived or not.
* @type {boolean}
* @memberof Pipeline
*/
archived?: boolean;
/**
* Whether the Pipeline is active or not.
* @type {boolean}
* @memberof Pipeline
*/
active?: boolean;
/**
* The order in which the Pipeline is displayed in the UI.
* @type {number}
* @memberof Pipeline
*/
display_order?: number | null;
/**
* Whether the Pipeline has win probability enabled or not.
* @type {boolean}
* @memberof Pipeline
*/
win_probability_enabled?: boolean;
/**
* The Pipeline Stages.
* @type {Array<PipelineStages>}
* @memberof Pipeline
*/
stages?: Array<PipelineStages>;
/**
* The date and time when the object was last updated.
* @type {Date}
* @memberof Pipeline
*/
readonly updated_at?: Date | null;
/**
* The date and time when the object was created.
* @type {Date}
* @memberof Pipeline
*/
readonly created_at?: Date | null;
/**
*
* @type {PassThroughBody}
* @memberof Pipeline
*/
pass_through?: PassThroughBody;
}
export declare function PipelineFromJSON(json: any): Pipeline;
export declare function PipelineFromJSONTyped(json: any, ignoreDiscriminator: boolean): Pipeline;
export declare function PipelineToJSON(value?: Pipeline | null): any;