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

odata.msgraph.client.entity.request.DeltaParticipantsRequest 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 com.github.davidmoten.odata.client.NameValue;

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

import odata.msgraph.client.entity.DeltaParticipants;
import odata.msgraph.client.entity.collection.request.ParticipantCollectionRequest;

@JsonIgnoreType
public class DeltaParticipantsRequest extends EntityRequest {

    public DeltaParticipantsRequest(ContextPath contextPath, Optional value) {
        super(DeltaParticipants.class, contextPath, value, false);
    }

    public ParticipantRequest participants(String id) {
        return new ParticipantRequest(contextPath.addSegment("participants").addKeys(new NameValue(id, String.class)), Optional.empty());
    }

    public ParticipantCollectionRequest participants() {
        return new ParticipantCollectionRequest(
                        contextPath.addSegment("participants"), Optional.empty());
    }

}