/** * 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 EffectiveConfigYamlResponse */ export interface EffectiveConfigYamlResponse { /** * * @type {string} * @memberof EffectiveConfigYamlResponse */ yaml?: string; } /** * Check if a given object implements the EffectiveConfigYamlResponse interface. */ export declare function instanceOfEffectiveConfigYamlResponse(value: object): value is EffectiveConfigYamlResponse; export declare function EffectiveConfigYamlResponseFromJSON(json: any): EffectiveConfigYamlResponse; export declare function EffectiveConfigYamlResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EffectiveConfigYamlResponse; export declare function EffectiveConfigYamlResponseToJSON(json: any): EffectiveConfigYamlResponse; export declare function EffectiveConfigYamlResponseToJSONTyped(value?: EffectiveConfigYamlResponse | null, ignoreDiscriminator?: boolean): any;