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

com.microsoft.azure.eventgrid.models.DeviceTwinInfoProperties Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 *
 * Code generated by Microsoft (R) AutoRest Code Generator.
 */

package com.microsoft.azure.eventgrid.models;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Properties JSON element.
 */
public class DeviceTwinInfoProperties {
    /**
     * A portion of the properties that can be written only by the application
     * back-end, and read by the device.
     */
    @JsonProperty(value = "desired")
    private DeviceTwinProperties desired;

    /**
     * A portion of the properties that can be written only by the device, and
     * read by the application back-end.
     */
    @JsonProperty(value = "reported")
    private DeviceTwinProperties reported;

    /**
     * Get a portion of the properties that can be written only by the application back-end, and read by the device.
     *
     * @return the desired value
     */
    public DeviceTwinProperties desired() {
        return this.desired;
    }

    /**
     * Set a portion of the properties that can be written only by the application back-end, and read by the device.
     *
     * @param desired the desired value to set
     * @return the DeviceTwinInfoProperties object itself.
     */
    public DeviceTwinInfoProperties withDesired(DeviceTwinProperties desired) {
        this.desired = desired;
        return this;
    }

    /**
     * Get a portion of the properties that can be written only by the device, and read by the application back-end.
     *
     * @return the reported value
     */
    public DeviceTwinProperties reported() {
        return this.reported;
    }

    /**
     * Set a portion of the properties that can be written only by the device, and read by the application back-end.
     *
     * @param reported the reported value to set
     * @return the DeviceTwinInfoProperties object itself.
     */
    public DeviceTwinInfoProperties withReported(DeviceTwinProperties reported) {
        this.reported = reported;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy