/** * 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 AssignContributorDto */ export interface AssignContributorDto { /** * The id or email of the user to add to the app. * @type {string} * @memberof AssignContributorDto */ contributorId: string; /** * The role of the contributor. * @type {string} * @memberof AssignContributorDto */ role?: string | null; /** * Set to true to invite the user if he does not exist. * @type {boolean} * @memberof AssignContributorDto */ invite?: boolean; } /** * Check if a given object implements the AssignContributorDto interface. */ export declare function instanceOfAssignContributorDto(value: any): value is AssignContributorDto; export declare function AssignContributorDtoFromJSON(json: any): AssignContributorDto; export declare function AssignContributorDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AssignContributorDto; export declare function AssignContributorDtoToJSON(value?: AssignContributorDto | null, _ignoreDiscriminator?: boolean): any;