UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
41 lines (40 loc) 1.41 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.21.1 * Contact: contact@emergentmethods.ai * * 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 GoogleDocsParams */ export interface GoogleDocsParams { /** * The google service account json. This should be a dict. You can get this from the google cloud console. The document will be created in the service account's google drive and shared with the user. * @type {{ [key: string]: any; }} * @memberof GoogleDocsParams */ clientJson: { [key: string]: any; }; /** * * @type {Array<string>} * @memberof GoogleDocsParams */ emails?: Array<string> | null; } /** * Check if a given object implements the GoogleDocsParams interface. */ export declare function instanceOfGoogleDocsParams(value: object): value is GoogleDocsParams; export declare function GoogleDocsParamsFromJSON(json: any): GoogleDocsParams; export declare function GoogleDocsParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GoogleDocsParams; export declare function GoogleDocsParamsToJSON(json: any): GoogleDocsParams; export declare function GoogleDocsParamsToJSONTyped(value?: GoogleDocsParams | null, ignoreDiscriminator?: boolean): any;