/** * 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 RepoGovernanceView */ export interface RepoGovernanceView { /** * * @type {number} * @memberof RepoGovernanceView */ configVersion?: number; /** * * @type {{ [key: string]: any; }} * @memberof RepoGovernanceView */ orgConfig?: { [key: string]: any; }; /** * * @type {{ [key: string]: any; }} * @memberof RepoGovernanceView */ overrides?: { [key: string]: any; }; /** * * @type {string} * @memberof RepoGovernanceView */ repoFullName?: string; } /** * Check if a given object implements the RepoGovernanceView interface. */ export declare function instanceOfRepoGovernanceView(value: object): value is RepoGovernanceView; export declare function RepoGovernanceViewFromJSON(json: any): RepoGovernanceView; export declare function RepoGovernanceViewFromJSONTyped(json: any, ignoreDiscriminator: boolean): RepoGovernanceView; export declare function RepoGovernanceViewToJSON(json: any): RepoGovernanceView; export declare function RepoGovernanceViewToJSONTyped(value?: RepoGovernanceView | null, ignoreDiscriminator?: boolean): any;