@apideck/node
Version:
Apideck Node.js SDK
64 lines (63 loc) • 1.75 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.
*/
/**
*
* @export
* @interface ContactsFilter
*/
export interface ContactsFilter {
/**
* Name of the contact to filter on
* @type {string}
* @memberof ContactsFilter
*/
name?: string;
/**
* First name of the contact to filter on
* @type {string}
* @memberof ContactsFilter
*/
first_name?: string;
/**
* Last name of the contact to filter on
* @type {string}
* @memberof ContactsFilter
*/
last_name?: string;
/**
* Email of the contact to filter on
* @type {string}
* @memberof ContactsFilter
*/
email?: string;
/**
* Phone number of the contact to filter on
* @type {string}
* @memberof ContactsFilter
*/
phone_number?: string;
/**
* Unique identifier for the associated company of the contact to filter on
* @type {string}
* @memberof ContactsFilter
*/
company_id?: string;
/**
* Unique identifier for the owner of the contact to filter on
* @type {string}
* @memberof ContactsFilter
*/
owner_id?: string;
}
export declare function ContactsFilterFromJSON(json: any): ContactsFilter;
export declare function ContactsFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContactsFilter;
export declare function ContactsFilterToJSON(value?: ContactsFilter | null): any;