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

com.microsoft.bing.websearch.models.TimeZoneTimeZoneInformation Maven / Gradle / Ivy

/**
 * 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.bing.websearch.models;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Defines a date and time for a geographical location.
 */
public class TimeZoneTimeZoneInformation {
    /**
     * The name of the geographical location.For example, County; City; City,
     * State; City, State, Country; or Time Zone.
     */
    @JsonProperty(value = "location", required = true)
    private String location;

    /**
     * The data and time specified in the form, YYYY-MM-DDThh;mm:ss.ssssssZ.
     */
    @JsonProperty(value = "time", required = true)
    private String time;

    /**
     * The offset from UTC. For example, UTC-7.
     */
    @JsonProperty(value = "utcOffset", required = true)
    private String utcOffset;

    /**
     * Get the name of the geographical location.For example, County; City; City, State; City, State, Country; or Time Zone.
     *
     * @return the location value
     */
    public String location() {
        return this.location;
    }

    /**
     * Set the name of the geographical location.For example, County; City; City, State; City, State, Country; or Time Zone.
     *
     * @param location the location value to set
     * @return the TimeZoneTimeZoneInformation object itself.
     */
    public TimeZoneTimeZoneInformation withLocation(String location) {
        this.location = location;
        return this;
    }

    /**
     * Get the data and time specified in the form, YYYY-MM-DDThh;mm:ss.ssssssZ.
     *
     * @return the time value
     */
    public String time() {
        return this.time;
    }

    /**
     * Set the data and time specified in the form, YYYY-MM-DDThh;mm:ss.ssssssZ.
     *
     * @param time the time value to set
     * @return the TimeZoneTimeZoneInformation object itself.
     */
    public TimeZoneTimeZoneInformation withTime(String time) {
        this.time = time;
        return this;
    }

    /**
     * Get the offset from UTC. For example, UTC-7.
     *
     * @return the utcOffset value
     */
    public String utcOffset() {
        return this.utcOffset;
    }

    /**
     * Set the offset from UTC. For example, UTC-7.
     *
     * @param utcOffset the utcOffset value to set
     * @return the TimeZoneTimeZoneInformation object itself.
     */
    public TimeZoneTimeZoneInformation withUtcOffset(String utcOffset) {
        this.utcOffset = utcOffset;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy