/** * 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 RotateTokenRequest */ export interface RotateTokenRequest { /** * * @type {number} * @memberof RotateTokenRequest */ daysUntilExpiration: number; /** * * @type {string} * @memberof RotateTokenRequest */ name: string; } /** * Check if a given object implements the RotateTokenRequest interface. */ export declare function instanceOfRotateTokenRequest(value: object): value is RotateTokenRequest; export declare function RotateTokenRequestFromJSON(json: any): RotateTokenRequest; export declare function RotateTokenRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RotateTokenRequest; export declare function RotateTokenRequestToJSON(json: any): RotateTokenRequest; export declare function RotateTokenRequestToJSONTyped(value?: RotateTokenRequest | null, ignoreDiscriminator?: boolean): any;