/** * 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 { ContributorDto } from './ContributorDto'; import type { ContributorsMetadata } from './ContributorsMetadata'; import type { ResourceLink } from './ResourceLink'; /** * * @export * @interface ContributorsDto */ export interface ContributorsDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof ContributorsDto */ links: { [key: string]: ResourceLink; }; /** * The contributors. * @type {Array} * @memberof ContributorsDto */ items: Array; /** * The maximum number of allowed contributors. * @type {number} * @memberof ContributorsDto */ maxContributors: number; /** * * @type {ContributorsMetadata} * @memberof ContributorsDto */ meta?: ContributorsMetadata; } /** * Check if a given object implements the ContributorsDto interface. */ export declare function instanceOfContributorsDto(value: any): value is ContributorsDto; export declare function ContributorsDtoFromJSON(json: any): ContributorsDto; export declare function ContributorsDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ContributorsDto; export declare function ContributorsDtoToJSON(value?: ContributorsDto | null, _ignoreDiscriminator?: boolean): any;