8 lines
237 B
TypeScript
8 lines
237 B
TypeScript
export interface IngestEndpointSecretOut {
|
|
key: string;
|
|
}
|
|
export declare const IngestEndpointSecretOutSerializer: {
|
|
_fromJsonObject(object: any): IngestEndpointSecretOut;
|
|
_toJsonObject(self: IngestEndpointSecretOut): any;
|
|
};
|