![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.authorization.fluent.models.MicrosoftGraphDateTimeColumn Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.authorization.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* dateTimeColumn.
*/
@Fluent
public final class MicrosoftGraphDateTimeColumn implements JsonSerializable {
/*
* How the value should be presented in the UX. Must be one of default, friendly, or standard. See below for more
* details. If unspecified, treated as default.
*/
private String displayAs;
/*
* Indicates whether the value should be presented as a date only or a date and time. Must be one of dateOnly or
* dateTime
*/
private String format;
/*
* dateTimeColumn
*/
private Map additionalProperties;
/**
* Creates an instance of MicrosoftGraphDateTimeColumn class.
*/
public MicrosoftGraphDateTimeColumn() {
}
/**
* Get the displayAs property: How the value should be presented in the UX. Must be one of default, friendly, or
* standard. See below for more details. If unspecified, treated as default.
*
* @return the displayAs value.
*/
public String displayAs() {
return this.displayAs;
}
/**
* Set the displayAs property: How the value should be presented in the UX. Must be one of default, friendly, or
* standard. See below for more details. If unspecified, treated as default.
*
* @param displayAs the displayAs value to set.
* @return the MicrosoftGraphDateTimeColumn object itself.
*/
public MicrosoftGraphDateTimeColumn withDisplayAs(String displayAs) {
this.displayAs = displayAs;
return this;
}
/**
* Get the format property: Indicates whether the value should be presented as a date only or a date and time. Must
* be one of dateOnly or dateTime.
*
* @return the format value.
*/
public String format() {
return this.format;
}
/**
* Set the format property: Indicates whether the value should be presented as a date only or a date and time. Must
* be one of dateOnly or dateTime.
*
* @param format the format value to set.
* @return the MicrosoftGraphDateTimeColumn object itself.
*/
public MicrosoftGraphDateTimeColumn withFormat(String format) {
this.format = format;
return this;
}
/**
* Get the additionalProperties property: dateTimeColumn.
*
* @return the additionalProperties value.
*/
public Map additionalProperties() {
return this.additionalProperties;
}
/**
* Set the additionalProperties property: dateTimeColumn.
*
* @param additionalProperties the additionalProperties value to set.
* @return the MicrosoftGraphDateTimeColumn object itself.
*/
public MicrosoftGraphDateTimeColumn withAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("displayAs", this.displayAs);
jsonWriter.writeStringField("format", this.format);
if (additionalProperties != null) {
for (Map.Entry additionalProperty : additionalProperties.entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MicrosoftGraphDateTimeColumn from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MicrosoftGraphDateTimeColumn if the JsonReader was pointing to an instance of it, or null
* if it was pointing to JSON null.
* @throws IOException If an error occurs while reading the MicrosoftGraphDateTimeColumn.
*/
public static MicrosoftGraphDateTimeColumn fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MicrosoftGraphDateTimeColumn deserializedMicrosoftGraphDateTimeColumn = new MicrosoftGraphDateTimeColumn();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("displayAs".equals(fieldName)) {
deserializedMicrosoftGraphDateTimeColumn.displayAs = reader.getString();
} else if ("format".equals(fieldName)) {
deserializedMicrosoftGraphDateTimeColumn.format = reader.getString();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedMicrosoftGraphDateTimeColumn.additionalProperties = additionalProperties;
return deserializedMicrosoftGraphDateTimeColumn;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy