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

odata.msgraph.client.entity.request.WorkbookChartAreaFormatRequest Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package odata.msgraph.client.entity.request;

import com.fasterxml.jackson.annotation.JsonIgnoreType;
import com.github.davidmoten.odata.client.ContextPath;
import com.github.davidmoten.odata.client.EntityRequest;

import java.lang.Object;
import java.util.Optional;

import odata.msgraph.client.entity.WorkbookChartAreaFormat;

@JsonIgnoreType
public class WorkbookChartAreaFormatRequest extends EntityRequest {

    public WorkbookChartAreaFormatRequest(ContextPath contextPath, Optional value) {
        super(WorkbookChartAreaFormat.class, contextPath, value, false);
    }

    public WorkbookChartFillRequest fill() {
        return new WorkbookChartFillRequest(contextPath.addSegment("fill"), Optional.empty());
    }

    public WorkbookChartFontRequest font() {
        return new WorkbookChartFontRequest(contextPath.addSegment("font"), Optional.empty());
    }

}