/** * 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 CreateTokenRequest */ export interface CreateTokenRequest { /** * * @type {number} * @memberof CreateTokenRequest */ daysUntilExpiration: number; /** * * @type {string} * @memberof CreateTokenRequest */ name: string; } /** * Check if a given object implements the CreateTokenRequest interface. */ export declare function instanceOfCreateTokenRequest(value: object): value is CreateTokenRequest; export declare function CreateTokenRequestFromJSON(json: any): CreateTokenRequest; export declare function CreateTokenRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTokenRequest; export declare function CreateTokenRequestToJSON(json: any): CreateTokenRequest; export declare function CreateTokenRequestToJSONTyped(value?: CreateTokenRequest | null, ignoreDiscriminator?: boolean): any;