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

com.azure.resourcemanager.authorization.fluent.models.MicrosoftGraphRecentNotebookLinks 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.44.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.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;

/**
 * recentNotebookLinks.
 */
@Fluent
public final class MicrosoftGraphRecentNotebookLinks implements JsonSerializable {
    /*
     * externalLink
     */
    private MicrosoftGraphExternalLink oneNoteClientUrl;

    /*
     * externalLink
     */
    private MicrosoftGraphExternalLink oneNoteWebUrl;

    /*
     * recentNotebookLinks
     */
    private Map additionalProperties;

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

    /**
     * Get the oneNoteClientUrl property: externalLink.
     * 
     * @return the oneNoteClientUrl value.
     */
    public MicrosoftGraphExternalLink oneNoteClientUrl() {
        return this.oneNoteClientUrl;
    }

    /**
     * Set the oneNoteClientUrl property: externalLink.
     * 
     * @param oneNoteClientUrl the oneNoteClientUrl value to set.
     * @return the MicrosoftGraphRecentNotebookLinks object itself.
     */
    public MicrosoftGraphRecentNotebookLinks withOneNoteClientUrl(MicrosoftGraphExternalLink oneNoteClientUrl) {
        this.oneNoteClientUrl = oneNoteClientUrl;
        return this;
    }

    /**
     * Get the oneNoteWebUrl property: externalLink.
     * 
     * @return the oneNoteWebUrl value.
     */
    public MicrosoftGraphExternalLink oneNoteWebUrl() {
        return this.oneNoteWebUrl;
    }

    /**
     * Set the oneNoteWebUrl property: externalLink.
     * 
     * @param oneNoteWebUrl the oneNoteWebUrl value to set.
     * @return the MicrosoftGraphRecentNotebookLinks object itself.
     */
    public MicrosoftGraphRecentNotebookLinks withOneNoteWebUrl(MicrosoftGraphExternalLink oneNoteWebUrl) {
        this.oneNoteWebUrl = oneNoteWebUrl;
        return this;
    }

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

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

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (oneNoteClientUrl() != null) {
            oneNoteClientUrl().validate();
        }
        if (oneNoteWebUrl() != null) {
            oneNoteWebUrl().validate();
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeJsonField("oneNoteClientUrl", this.oneNoteClientUrl);
        jsonWriter.writeJsonField("oneNoteWebUrl", this.oneNoteWebUrl);
        if (additionalProperties != null) {
            for (Map.Entry additionalProperty : additionalProperties.entrySet()) {
                jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
            }
        }
        return jsonWriter.writeEndObject();
    }

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

                if ("oneNoteClientUrl".equals(fieldName)) {
                    deserializedMicrosoftGraphRecentNotebookLinks.oneNoteClientUrl
                        = MicrosoftGraphExternalLink.fromJson(reader);
                } else if ("oneNoteWebUrl".equals(fieldName)) {
                    deserializedMicrosoftGraphRecentNotebookLinks.oneNoteWebUrl
                        = MicrosoftGraphExternalLink.fromJson(reader);
                } else {
                    if (additionalProperties == null) {
                        additionalProperties = new LinkedHashMap<>();
                    }

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

            return deserializedMicrosoftGraphRecentNotebookLinks;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy