UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
43 lines (42 loc) 1.67 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.19.10 * 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 AsknewsApiSchemaV1CommonGraphRelationships */ export interface AsknewsApiSchemaV1CommonGraphRelationships { /** * * @type {Array<{ [key: string]: string; }>} * @memberof AsknewsApiSchemaV1CommonGraphRelationships */ nodes?: Array<{ [key: string]: string; }>; /** * * @type {Array<{ [key: string]: string; }>} * @memberof AsknewsApiSchemaV1CommonGraphRelationships */ edges?: Array<{ [key: string]: string; }>; } /** * Check if a given object implements the AsknewsApiSchemaV1CommonGraphRelationships interface. */ export declare function instanceOfAsknewsApiSchemaV1CommonGraphRelationships(value: object): value is AsknewsApiSchemaV1CommonGraphRelationships; export declare function AsknewsApiSchemaV1CommonGraphRelationshipsFromJSON(json: any): AsknewsApiSchemaV1CommonGraphRelationships; export declare function AsknewsApiSchemaV1CommonGraphRelationshipsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AsknewsApiSchemaV1CommonGraphRelationships; export declare function AsknewsApiSchemaV1CommonGraphRelationshipsToJSON(json: any): AsknewsApiSchemaV1CommonGraphRelationships; export declare function AsknewsApiSchemaV1CommonGraphRelationshipsToJSONTyped(value?: AsknewsApiSchemaV1CommonGraphRelationships | null, ignoreDiscriminator?: boolean): any;