com.microsoft.kiota.RequestOption Maven / Gradle / Ivy
package com.microsoft.kiota;
import jakarta.annotation.Nonnull;
/** Represents a request option. */
public interface RequestOption {
/**
* Gets the type of the option to use for middleware retrieval.
* @param Type of the option.
* @return Class of the option type.
*/
@Nonnull public Class getType();
}