@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
43 lines (42 loc) • 1.31 kB
TypeScript
/**
* 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 GraphRelationships
*/
export interface GraphRelationships {
/**
*
* @type {Array<{ [key: string]: string; }>}
* @memberof GraphRelationships
*/
nodes?: Array<{
[key: string]: string;
}>;
/**
*
* @type {Array<{ [key: string]: string; }>}
* @memberof GraphRelationships
*/
edges?: Array<{
[key: string]: string;
}>;
}
/**
* Check if a given object implements the GraphRelationships interface.
*/
export declare function instanceOfGraphRelationships(value: object): value is GraphRelationships;
export declare function GraphRelationshipsFromJSON(json: any): GraphRelationships;
export declare function GraphRelationshipsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GraphRelationships;
export declare function GraphRelationshipsToJSON(json: any): GraphRelationships;
export declare function GraphRelationshipsToJSONTyped(value?: GraphRelationships | null, ignoreDiscriminator?: boolean): any;