10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
export interface IngestEndpointHeadersIn {
|
|
headers: {
|
|
[key: string]: string;
|
|
};
|
|
}
|
|
export declare const IngestEndpointHeadersInSerializer: {
|
|
_fromJsonObject(object: any): IngestEndpointHeadersIn;
|
|
_toJsonObject(self: IngestEndpointHeadersIn): any;
|
|
};
|