/** * 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 PurlRequestPost */ export interface PurlRequestPost { /** * * @type {Array} * @memberof PurlRequestPost */ coordinates: Array; } /** * Check if a given object implements the PurlRequestPost interface. */ export declare function instanceOfPurlRequestPost(value: object): value is PurlRequestPost; export declare function PurlRequestPostFromJSON(json: any): PurlRequestPost; export declare function PurlRequestPostFromJSONTyped(json: any, ignoreDiscriminator: boolean): PurlRequestPost; export declare function PurlRequestPostToJSON(json: any): PurlRequestPost; export declare function PurlRequestPostToJSONTyped(value?: PurlRequestPost | null, ignoreDiscriminator?: boolean): any;