/** * 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 OrgConfigRequest */ export interface OrgConfigRequest { /** * * @type {{ [key: string]: any; }} * @memberof OrgConfigRequest */ config: { [key: string]: any; }; /** * * @type {boolean} * @memberof OrgConfigRequest */ developerAccessEnabled?: boolean; /** * * @type {number} * @memberof OrgConfigRequest */ expectedVersion?: number; } /** * Check if a given object implements the OrgConfigRequest interface. */ export declare function instanceOfOrgConfigRequest(value: object): value is OrgConfigRequest; export declare function OrgConfigRequestFromJSON(json: any): OrgConfigRequest; export declare function OrgConfigRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrgConfigRequest; export declare function OrgConfigRequestToJSON(json: any): OrgConfigRequest; export declare function OrgConfigRequestToJSONTyped(value?: OrgConfigRequest | null, ignoreDiscriminator?: boolean): any;