UNPKG

@vectorize-io/vectorize-client

Version:
54 lines (53 loc) 1.75 kB
/** * Vectorize API * API for Vectorize services (Beta) * * The version of the OpenAPI document: 0.1.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Configuration for Intercom connector * @export * @interface INTERCOMConfig */ export interface INTERCOMConfig { /** * Created After. Filter for conversations created after this date. Example: Enter a date: Example 2012-12-31 * @type {Date} * @memberof INTERCOMConfig */ createdAt: Date; /** * Updated After. Filter for conversations updated after this date. Example: Enter a date: Example 2012-12-31 * @type {Date} * @memberof INTERCOMConfig */ updatedAt?: Date; /** * State * @type {Array<string>} * @memberof INTERCOMConfig */ state?: INTERCOMConfigStateEnum; } /** * @export */ export declare const INTERCOMConfigStateEnum: { readonly Open: "open"; readonly Closed: "closed"; readonly Snoozed: "snoozed"; }; export type INTERCOMConfigStateEnum = typeof INTERCOMConfigStateEnum[keyof typeof INTERCOMConfigStateEnum]; /** * Check if a given object implements the INTERCOMConfig interface. */ export declare function instanceOfINTERCOMConfig(value: object): value is INTERCOMConfig; export declare function INTERCOMConfigFromJSON(json: any): INTERCOMConfig; export declare function INTERCOMConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): INTERCOMConfig; export declare function INTERCOMConfigToJSON(json: any): INTERCOMConfig; export declare function INTERCOMConfigToJSONTyped(value?: INTERCOMConfig | null, ignoreDiscriminator?: boolean): any;