UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
33 lines (32 loc) 1.09 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 BlueskySourceParams */ export interface BlueskySourceParams { /** * * @type {string} * @memberof BlueskySourceParams */ query?: string | null; } /** * Check if a given object implements the BlueskySourceParams interface. */ export declare function instanceOfBlueskySourceParams(value: object): value is BlueskySourceParams; export declare function BlueskySourceParamsFromJSON(json: any): BlueskySourceParams; export declare function BlueskySourceParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlueskySourceParams; export declare function BlueskySourceParamsToJSON(json: any): BlueskySourceParams; export declare function BlueskySourceParamsToJSONTyped(value?: BlueskySourceParams | null, ignoreDiscriminator?: boolean): any;