/** * 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 ContributorsMetadata */ export interface ContributorsMetadata { /** * Indicates whether the user has been invited. * @type {string} * @memberof ContributorsMetadata */ isInvited: string; } /** * Check if a given object implements the ContributorsMetadata interface. */ export declare function instanceOfContributorsMetadata(value: any): value is ContributorsMetadata; export declare function ContributorsMetadataFromJSON(json: any): ContributorsMetadata; export declare function ContributorsMetadataFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ContributorsMetadata; export declare function ContributorsMetadataToJSON(value?: ContributorsMetadata | null, _ignoreDiscriminator?: boolean): any;