UNPKG

@apideck/node

Version:
52 lines (51 loc) 1.53 kB
/** * 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. */ /** * * @export * @interface PipelineStages */ export interface PipelineStages { /** * The unique identifier of the Pipeline Stage. * @type {string} * @memberof PipelineStages */ readonly id?: string | null; /** * The name of the Pipeline Stage. * @type {string} * @memberof PipelineStages */ name?: string | null; /** * The value of the Pipeline Stage. * @type {string} * @memberof PipelineStages */ value?: string | null; /** * The expected probability of winning an Opportunity in this Pipeline Stage. Valid values are [0-100]. * @type {number} * @memberof PipelineStages */ win_probability?: number | null; /** * The order in which the Pipeline Stage is displayed in the UI. * @type {number} * @memberof PipelineStages */ display_order?: number | null; } export declare function PipelineStagesFromJSON(json: any): PipelineStages; export declare function PipelineStagesFromJSONTyped(json: any, ignoreDiscriminator: boolean): PipelineStages; export declare function PipelineStagesToJSON(value?: PipelineStages | null): any;