/** * 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 PeriodDTO */ export interface PeriodDTO { /** * * @type {Date} * @memberof PeriodDTO */ end?: Date; /** * * @type {Date} * @memberof PeriodDTO */ start?: Date; } /** * Check if a given object implements the PeriodDTO interface. */ export declare function instanceOfPeriodDTO(value: object): value is PeriodDTO; export declare function PeriodDTOFromJSON(json: any): PeriodDTO; export declare function PeriodDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): PeriodDTO; export declare function PeriodDTOToJSON(json: any): PeriodDTO; export declare function PeriodDTOToJSONTyped(value?: PeriodDTO | null, ignoreDiscriminator?: boolean): any;