UNPKG

@vectorize-io/vectorize-client

Version:
63 lines (62 loc) 2.17 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 Fireflies.ai connector * @export * @interface FIREFLIESConfig */ export interface FIREFLIESConfig { /** * Start Date. Include meetings from this date forward. Example: Enter a date: Example 2023-12-31 * @type {Date} * @memberof FIREFLIESConfig */ startDate: Date; /** * End Date. Include meetings up to this date only. Example: Enter a date: Example 2023-12-31 * @type {Date} * @memberof FIREFLIESConfig */ endDate?: Date; /** * Title Filter. Only include meetings containing any of these keywords in the title. Example: Enter meeting title keywords * @type {Array<string>} * @memberof FIREFLIESConfig */ titleFilter?: Array<string>; /** * * @type {string} * @memberof FIREFLIESConfig */ participantFilterType: string; /** * Participant's Email Filter. Include meetings where these participants were invited. Example: Enter participant email * @type {string} * @memberof FIREFLIESConfig */ participantFilter?: string; /** * Max Meetings. Leave blank for no limit, or specify a maximum number. Example: Enter maximum number of meetings to retrieve (leave blank for no limit) * @type {number} * @memberof FIREFLIESConfig */ maxMeetings?: number; } /** * Check if a given object implements the FIREFLIESConfig interface. */ export declare function instanceOfFIREFLIESConfig(value: object): value is FIREFLIESConfig; export declare function FIREFLIESConfigFromJSON(json: any): FIREFLIESConfig; export declare function FIREFLIESConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): FIREFLIESConfig; export declare function FIREFLIESConfigToJSON(json: any): FIREFLIESConfig; export declare function FIREFLIESConfigToJSONTyped(value?: FIREFLIESConfig | null, ignoreDiscriminator?: boolean): any;