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

com.azure.resourcemanager.authorization.fluent.models.MicrosoftGraphTodo Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Authorization Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.46.0
Show newest version
// 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.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

/**
 * todo.
 */
@Fluent
public final class MicrosoftGraphTodo extends MicrosoftGraphEntity {
    /*
     * The task lists in the users mailbox.
     */
    private List lists;

    /*
     * todo
     */
    private Map additionalProperties;

    /**
     * Creates an instance of MicrosoftGraphTodo class.
     */
    public MicrosoftGraphTodo() {
    }

    /**
     * Get the lists property: The task lists in the users mailbox.
     * 
     * @return the lists value.
     */
    public List lists() {
        return this.lists;
    }

    /**
     * Set the lists property: The task lists in the users mailbox.
     * 
     * @param lists the lists value to set.
     * @return the MicrosoftGraphTodo object itself.
     */
    public MicrosoftGraphTodo withLists(List lists) {
        this.lists = lists;
        return this;
    }

    /**
     * Get the additionalProperties property: todo.
     * 
     * @return the additionalProperties value.
     */
    public Map additionalProperties() {
        return this.additionalProperties;
    }

    /**
     * Set the additionalProperties property: todo.
     * 
     * @param additionalProperties the additionalProperties value to set.
     * @return the MicrosoftGraphTodo object itself.
     */
    public MicrosoftGraphTodo withAdditionalProperties(Map additionalProperties) {
        this.additionalProperties = additionalProperties;
        return this;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public MicrosoftGraphTodo withId(String id) {
        super.withId(id);
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    @Override
    public void validate() {
        super.validate();
        if (lists() != null) {
            lists().forEach(e -> e.validate());
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeStringField("id", id());
        jsonWriter.writeArrayField("lists", this.lists, (writer, element) -> writer.writeJson(element));
        if (additionalProperties != null) {
            for (Map.Entry additionalProperty : additionalProperties.entrySet()) {
                jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
            }
        }
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of MicrosoftGraphTodo from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of MicrosoftGraphTodo 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 MicrosoftGraphTodo.
     */
    public static MicrosoftGraphTodo fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            MicrosoftGraphTodo deserializedMicrosoftGraphTodo = new MicrosoftGraphTodo();
            Map additionalProperties = null;
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("id".equals(fieldName)) {
                    deserializedMicrosoftGraphTodo.withId(reader.getString());
                } else if ("lists".equals(fieldName)) {
                    List lists
                        = reader.readArray(reader1 -> MicrosoftGraphTodoTaskList.fromJson(reader1));
                    deserializedMicrosoftGraphTodo.lists = lists;
                } else {
                    if (additionalProperties == null) {
                        additionalProperties = new LinkedHashMap<>();
                    }

                    additionalProperties.put(fieldName, reader.readUntyped());
                }
            }
            deserializedMicrosoftGraphTodo.additionalProperties = additionalProperties;

            return deserializedMicrosoftGraphTodo;
        });
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy