/** * 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 UpsertUserConceptByNameRequest */ export interface UpsertUserConceptByNameRequest { /** * Learner-supplied concept name. Leading/trailing whitespace is trimmed, internal runs of whitespace are collapsed, and a trailing sentence period is stripped before lookup; matching is case-insensitive. When a new concept row is created, the caller's original casing is preserved. * @type {string} * @memberof UpsertUserConceptByNameRequest */ name: string; } /** * Check if a given object implements the UpsertUserConceptByNameRequest interface. */ export declare function instanceOfUpsertUserConceptByNameRequest(value: object): value is UpsertUserConceptByNameRequest; export declare function UpsertUserConceptByNameRequestFromJSON(json: any): UpsertUserConceptByNameRequest; export declare function UpsertUserConceptByNameRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpsertUserConceptByNameRequest; export declare function UpsertUserConceptByNameRequestToJSON(json: any): UpsertUserConceptByNameRequest; export declare function UpsertUserConceptByNameRequestToJSONTyped(value?: UpsertUserConceptByNameRequest | null, ignoreDiscriminator?: boolean): any;