8 lines
241 B
TypeScript
8 lines
241 B
TypeScript
export interface EndpointSecretRotateIn {
|
|
key?: string | null;
|
|
}
|
|
export declare const EndpointSecretRotateInSerializer: {
|
|
_fromJsonObject(object: any): EndpointSecretRotateIn;
|
|
_toJsonObject(self: EndpointSecretRotateIn): any;
|
|
};
|