/** * Sonatype Guide API * REST API into [Sonatype Guide](https://guide.sonatype.com). * * The version of the OpenAPI document: 202607 * * * 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 OrganizationDTO */ export interface OrganizationDTO { /** * * @type {string} * @memberof OrganizationDTO */ auth0OrgId?: string; /** * * @type {boolean} * @memberof OrganizationDTO */ isBillingSubscriber?: boolean; /** * * @type {boolean} * @memberof OrganizationDTO */ isOwner?: boolean; /** * * @type {string} * @memberof OrganizationDTO */ logo?: string; /** * * @type {string} * @memberof OrganizationDTO */ name?: string; /** * * @type {number} * @memberof OrganizationDTO */ people?: number; /** * * @type {string} * @memberof OrganizationDTO */ slug?: string; /** * * @type {string} * @memberof OrganizationDTO */ url?: string; } /** * Check if a given object implements the OrganizationDTO interface. */ export declare function instanceOfOrganizationDTO(value: object): value is OrganizationDTO; export declare function OrganizationDTOFromJSON(json: any): OrganizationDTO; export declare function OrganizationDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationDTO; export declare function OrganizationDTOToJSON(json: any): OrganizationDTO; export declare function OrganizationDTOToJSONTyped(value?: OrganizationDTO | null, ignoreDiscriminator?: boolean): any;