/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.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 TransferToTeamDto */ export interface TransferToTeamDto { /** * The ID of the team. * @type {string} * @memberof TransferToTeamDto */ teamId?: string | null; } /** * Check if a given object implements the TransferToTeamDto interface. */ export declare function instanceOfTransferToTeamDto(value: any): value is TransferToTeamDto; export declare function TransferToTeamDtoFromJSON(json: any): TransferToTeamDto; export declare function TransferToTeamDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): TransferToTeamDto; export declare function TransferToTeamDtoToJSON(value?: TransferToTeamDto | null, _ignoreDiscriminator?: boolean): any;