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

com.bronto.api.model.FormatSettings Maven / Gradle / Ivy


package com.bronto.api.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for formatSettings complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="formatSettings">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="timeZone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="dateFormat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="locale" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "formatSettings", propOrder = { "timeZone", "dateFormat", "locale" }) public class FormatSettings { protected String timeZone; protected String dateFormat; protected String locale; /** * Gets the value of the timeZone property. * * @return * possible object is * {@link String } * */ public String getTimeZone() { return timeZone; } /** * Sets the value of the timeZone property. * * @param value * allowed object is * {@link String } * */ public void setTimeZone(String value) { this.timeZone = value; } /** * Gets the value of the dateFormat property. * * @return * possible object is * {@link String } * */ public String getDateFormat() { return dateFormat; } /** * Sets the value of the dateFormat property. * * @param value * allowed object is * {@link String } * */ public void setDateFormat(String value) { this.dateFormat = value; } /** * Gets the value of the locale property. * * @return * possible object is * {@link String } * */ public String getLocale() { return locale; } /** * Sets the value of the locale property. * * @param value * allowed object is * {@link String } * */ public void setLocale(String value) { this.locale = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy