export interface HttpHeader {
    /**
     * Name of the header, example: 'Accept'
     */
    name: string;
    /**
     * Value of the header, example: 'application/json'
     */
    value: string;
}
