11 lines
302 B
TypeScript
11 lines
302 B
TypeScript
export interface IngestEndpointHeadersOut {
|
|
headers: {
|
|
[key: string]: string;
|
|
};
|
|
sensitive: string[];
|
|
}
|
|
export declare const IngestEndpointHeadersOutSerializer: {
|
|
_fromJsonObject(object: any): IngestEndpointHeadersOut;
|
|
_toJsonObject(self: IngestEndpointHeadersOut): any;
|
|
};
|