/** * 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 UpdateOrganizationRequest */ export interface UpdateOrganizationRequest { /** * * @type {string} * @memberof UpdateOrganizationRequest */ logoUrl?: string; /** * * @type {string} * @memberof UpdateOrganizationRequest */ name?: string; /** * * @type {string} * @memberof UpdateOrganizationRequest */ url?: string; } /** * Check if a given object implements the UpdateOrganizationRequest interface. */ export declare function instanceOfUpdateOrganizationRequest(value: object): value is UpdateOrganizationRequest; export declare function UpdateOrganizationRequestFromJSON(json: any): UpdateOrganizationRequest; export declare function UpdateOrganizationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateOrganizationRequest; export declare function UpdateOrganizationRequestToJSON(json: any): UpdateOrganizationRequest; export declare function UpdateOrganizationRequestToJSONTyped(value?: UpdateOrganizationRequest | null, ignoreDiscriminator?: boolean): any;