odata.msgraph.client.entity.AccessPackageQuestion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-client-msgraph Show documentation
Show all versions of odata-client-msgraph Show documentation
Java client for use with the Microsoft Graph v1.0 endpoint
package odata.msgraph.client.entity;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.github.davidmoten.odata.client.ClientException;
import com.github.davidmoten.odata.client.CollectionPage;
import com.github.davidmoten.odata.client.HttpRequestOptions;
import com.github.davidmoten.odata.client.NameValue;
import com.github.davidmoten.odata.client.ODataEntityType;
import com.github.davidmoten.odata.client.RequestOptions;
import com.github.davidmoten.odata.client.UnmappedFields;
import com.github.davidmoten.odata.client.Util;
import com.github.davidmoten.odata.client.annotation.Property;
import com.github.davidmoten.odata.client.internal.ChangedFields;
import com.github.davidmoten.odata.client.internal.RequestHelper;
import com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl;
import java.lang.Boolean;
import java.lang.Integer;
import java.lang.Object;
import java.lang.Override;
import java.lang.String;
import java.lang.StringBuilder;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import odata.msgraph.client.complex.AccessPackageLocalizedText;
@JsonPropertyOrder({
"@odata.type",
"isAnswerEditable",
"isRequired",
"localizations",
"sequence",
"text"})
@JsonInclude(Include.NON_NULL)
public class AccessPackageQuestion extends Entity implements ODataEntityType {
@Override
public String odataTypeName() {
return "microsoft.graph.accessPackageQuestion";
}
@JsonProperty("isAnswerEditable")
protected Boolean isAnswerEditable;
@JsonProperty("isRequired")
protected Boolean isRequired;
@JsonProperty("localizations")
protected List localizations;
@JsonProperty("localizations@nextLink")
protected String localizationsNextLink;
@JsonProperty("sequence")
protected Integer sequence;
@JsonProperty("text")
protected String text;
protected AccessPackageQuestion() {
super();
}
@Override
@JsonIgnore
public ChangedFields getChangedFields() {
return changedFields;
}
@Override
public void postInject(boolean addKeysToContextPath) {
if (addKeysToContextPath && id != null) {
contextPath = contextPath.clearQueries().addKeys(new NameValue(id, String.class));
}
}
@Property(name="isAnswerEditable")
@JsonIgnore
public Optional getIsAnswerEditable() {
return Optional.ofNullable(isAnswerEditable);
}
public AccessPackageQuestion withIsAnswerEditable(Boolean isAnswerEditable) {
AccessPackageQuestion _x = _copy();
_x.changedFields = changedFields.add("isAnswerEditable");
_x.odataType = Util.nvl(odataType, "microsoft.graph.accessPackageQuestion");
_x.isAnswerEditable = isAnswerEditable;
return _x;
}
@Property(name="isRequired")
@JsonIgnore
public Optional getIsRequired() {
return Optional.ofNullable(isRequired);
}
public AccessPackageQuestion withIsRequired(Boolean isRequired) {
AccessPackageQuestion _x = _copy();
_x.changedFields = changedFields.add("isRequired");
_x.odataType = Util.nvl(odataType, "microsoft.graph.accessPackageQuestion");
_x.isRequired = isRequired;
return _x;
}
@Property(name="localizations")
@JsonIgnore
public CollectionPage getLocalizations() {
return new CollectionPage(contextPath, AccessPackageLocalizedText.class, this.localizations, Optional.ofNullable(localizationsNextLink), Collections.emptyList(), HttpRequestOptions.EMPTY);
}
public AccessPackageQuestion withLocalizations(List localizations) {
AccessPackageQuestion _x = _copy();
_x.changedFields = changedFields.add("localizations");
_x.odataType = Util.nvl(odataType, "microsoft.graph.accessPackageQuestion");
_x.localizations = localizations;
return _x;
}
@Property(name="localizations")
@JsonIgnore
public CollectionPage getLocalizations(HttpRequestOptions options) {
return new CollectionPage(contextPath, AccessPackageLocalizedText.class, this.localizations, Optional.ofNullable(localizationsNextLink), Collections.emptyList(), options);
}
@Property(name="sequence")
@JsonIgnore
public Optional getSequence() {
return Optional.ofNullable(sequence);
}
public AccessPackageQuestion withSequence(Integer sequence) {
AccessPackageQuestion _x = _copy();
_x.changedFields = changedFields.add("sequence");
_x.odataType = Util.nvl(odataType, "microsoft.graph.accessPackageQuestion");
_x.sequence = sequence;
return _x;
}
@Property(name="text")
@JsonIgnore
public Optional getText() {
return Optional.ofNullable(text);
}
public AccessPackageQuestion withText(String text) {
AccessPackageQuestion _x = _copy();
_x.changedFields = changedFields.add("text");
_x.odataType = Util.nvl(odataType, "microsoft.graph.accessPackageQuestion");
_x.text = text;
return _x;
}
public AccessPackageQuestion withUnmappedField(String name, Object value) {
AccessPackageQuestion _x = _copy();
_x.setUnmappedField(name, value);
return _x;
}
@JsonAnySetter
private void setUnmappedField(String name, Object value) {
if (unmappedFields == null) {
unmappedFields = new UnmappedFieldsImpl();
}
unmappedFields.put(name, value);
}
@JsonAnyGetter
private UnmappedFieldsImpl unmappedFields() {
return unmappedFields == null ? UnmappedFieldsImpl.EMPTY : unmappedFields;
}
@Override
public UnmappedFields getUnmappedFields() {
return unmappedFields();
}
/**
* Submits only changed fields for update and returns an
* immutable copy of {@code this} with changed fields reset.
*
* @return a copy of {@code this} with changed fields reset
* @throws ClientException if HTTP response is not as expected
*/
public AccessPackageQuestion patch() {
RequestHelper.patch(this, contextPath, RequestOptions.EMPTY);
AccessPackageQuestion _x = _copy();
_x.changedFields = null;
return _x;
}
/**
* Submits all fields for update and returns an immutable copy of {@code this}
* with changed fields reset (they were ignored anyway).
*
* @return a copy of {@code this} with changed fields reset
* @throws ClientException if HTTP response is not as expected
*/
public AccessPackageQuestion put() {
RequestHelper.put(this, contextPath, RequestOptions.EMPTY);
AccessPackageQuestion _x = _copy();
_x.changedFields = null;
return _x;
}
private AccessPackageQuestion _copy() {
AccessPackageQuestion _x = new AccessPackageQuestion();
_x.contextPath = contextPath;
_x.changedFields = changedFields;
_x.unmappedFields = unmappedFields.copy();
_x.odataType = odataType;
_x.id = id;
_x.isAnswerEditable = isAnswerEditable;
_x.isRequired = isRequired;
_x.localizations = localizations;
_x.sequence = sequence;
_x.text = text;
return _x;
}
@Override
public String toString() {
StringBuilder b = new StringBuilder();
b.append("AccessPackageQuestion[");
b.append("id=");
b.append(this.id);
b.append(", ");
b.append("isAnswerEditable=");
b.append(this.isAnswerEditable);
b.append(", ");
b.append("isRequired=");
b.append(this.isRequired);
b.append(", ");
b.append("localizations=");
b.append(this.localizations);
b.append(", ");
b.append("sequence=");
b.append(this.sequence);
b.append(", ");
b.append("text=");
b.append(this.text);
b.append("]");
b.append(",unmappedFields=");
b.append(unmappedFields);
b.append(",odataType=");
b.append(odataType);
return b.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy