/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * 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 CanvasDomainMatch */ export interface CanvasDomainMatch { /** * Human-readable institution name * @type {string} * @memberof CanvasDomainMatch */ name: string; /** * Canvas domain (e.g. myschool.instructure.com) * @type {string} * @memberof CanvasDomainMatch */ domain: string; /** * Model confidence that this match corresponds to the query * @type {number} * @memberof CanvasDomainMatch */ confidence: number; } /** * Check if a given object implements the CanvasDomainMatch interface. */ export declare function instanceOfCanvasDomainMatch(value: object): value is CanvasDomainMatch; export declare function CanvasDomainMatchFromJSON(json: any): CanvasDomainMatch; export declare function CanvasDomainMatchFromJSONTyped(json: any, ignoreDiscriminator: boolean): CanvasDomainMatch; export declare function CanvasDomainMatchToJSON(json: any): CanvasDomainMatch; export declare function CanvasDomainMatchToJSONTyped(value?: CanvasDomainMatch | null, ignoreDiscriminator?: boolean): any;