@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
33 lines (32 loc) • 1.14 kB
TypeScript
/**
* 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 TelegramSourceParams
*/
export interface TelegramSourceParams {
/**
* The channel name to use as a source
* @type {string}
* @memberof TelegramSourceParams
*/
channelName: string;
}
/**
* Check if a given object implements the TelegramSourceParams interface.
*/
export declare function instanceOfTelegramSourceParams(value: object): value is TelegramSourceParams;
export declare function TelegramSourceParamsFromJSON(json: any): TelegramSourceParams;
export declare function TelegramSourceParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TelegramSourceParams;
export declare function TelegramSourceParamsToJSON(json: any): TelegramSourceParams;
export declare function TelegramSourceParamsToJSONTyped(value?: TelegramSourceParams | null, ignoreDiscriminator?: boolean): any;