/** * 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 OrgGovernanceView */ export interface OrgGovernanceView { /** * * @type {{ [key: string]: any; }} * @memberof OrgGovernanceView */ config?: { [key: string]: any; }; /** * * @type {number} * @memberof OrgGovernanceView */ configVersion?: number; /** * * @type {boolean} * @memberof OrgGovernanceView */ developerAccessEnabled?: boolean; } /** * Check if a given object implements the OrgGovernanceView interface. */ export declare function instanceOfOrgGovernanceView(value: object): value is OrgGovernanceView; export declare function OrgGovernanceViewFromJSON(json: any): OrgGovernanceView; export declare function OrgGovernanceViewFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrgGovernanceView; export declare function OrgGovernanceViewToJSON(json: any): OrgGovernanceView; export declare function OrgGovernanceViewToJSONTyped(value?: OrgGovernanceView | null, ignoreDiscriminator?: boolean): any;