@apideck/node
Version:
Apideck Node.js SDK
47 lines (46 loc) • 1.19 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 LeadsSort
*/
export interface LeadsSort {
/**
* The field on which to sort the Leads
* @type {string}
* @memberof LeadsSort
*/
by?: LeadsSortBy;
/**
*
* @type {SortDirection}
* @memberof LeadsSort
*/
direction?: SortDirection;
}
/**
* @export
* @enum {string}
*/
export declare enum LeadsSortBy {
created_at = "created_at",
updated_at = "updated_at",
name = "name",
first_name = "first_name",
last_name = "last_name",
email = "email"
}
export declare function LeadsSortFromJSON(json: any): LeadsSort;
export declare function LeadsSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadsSort;
export declare function LeadsSortToJSON(value?: LeadsSort | null): any;