11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
export interface EndpointHeadersPatchIn {
|
|
deleteHeaders?: string[];
|
|
headers: {
|
|
[key: string]: string;
|
|
};
|
|
}
|
|
export declare const EndpointHeadersPatchInSerializer: {
|
|
_fromJsonObject(object: any): EndpointHeadersPatchIn;
|
|
_toJsonObject(self: EndpointHeadersPatchIn): any;
|
|
};
|