@apideck/node
Version:
Apideck Node.js SDK
47 lines (46 loc) • 1.32 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 { SortDirection } from './SortDirection';
/**
*
* @export
* @interface OpportunitiesSort
*/
export interface OpportunitiesSort {
/**
* The field on which to sort the Opportunities
* @type {string}
* @memberof OpportunitiesSort
*/
by?: OpportunitiesSortBy;
/**
*
* @type {SortDirection}
* @memberof OpportunitiesSort
*/
direction?: SortDirection;
}
/**
* @export
* @enum {string}
*/
export declare enum OpportunitiesSortBy {
created_at = "created_at",
updated_at = "updated_at",
title = "title",
win_probability = "win_probability",
monetary_amount = "monetary_amount",
status = "status"
}
export declare function OpportunitiesSortFromJSON(json: any): OpportunitiesSort;
export declare function OpportunitiesSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): OpportunitiesSort;
export declare function OpportunitiesSortToJSON(value?: OpportunitiesSort | null): any;