/** * 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. */ import type { ResourceLink } from './ResourceLink'; /** * * @export * @interface ContributorDto */ export interface ContributorDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof ContributorDto */ links: { [key: string]: ResourceLink; }; /** * The ID of the user that contributes to the app. * @type {string} * @memberof ContributorDto */ contributorId: string; /** * The display name. * @type {string} * @memberof ContributorDto */ contributorName: string; /** * The email address. * @type {string} * @memberof ContributorDto */ contributorEmail: string; /** * The role of the contributor. * @type {string} * @memberof ContributorDto */ role?: string | null; } /** * Check if a given object implements the ContributorDto interface. */ export declare function instanceOfContributorDto(value: any): value is ContributorDto; export declare function ContributorDtoFromJSON(json: any): ContributorDto; export declare function ContributorDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ContributorDto; export declare function ContributorDtoToJSON(value?: ContributorDto | null, _ignoreDiscriminator?: boolean): any;