All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.kiota.ResponseHeaders Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.microsoft.kiota;

import jakarta.annotation.Nonnull;

/**
 * A class representing the headers of a request.
 */
public class ResponseHeaders extends Headers {
    /** Default constructor */
    public ResponseHeaders() {
        super();
    }

    /**
     *  Copy constructor
     * @param responseHeaders The response headers to initialize with.
     */
    public ResponseHeaders(@Nonnull ResponseHeaders responseHeaders) {
        super(responseHeaders);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy