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

com.scene7.ipsapi.FontFieldUpdate Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


package com.scene7.ipsapi;

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


/**
 * 

Java class for FontFieldUpdate complex type. * *

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

 * <complexType name="FontFieldUpdate">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="assetHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="fontName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="postscriptName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="rtfName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fontFamily" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="style" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="typeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FontFieldUpdate", propOrder = { "assetHandle", "fontName", "postscriptName", "rtfName", "fontFamily", "style", "typeName", "type" }) public class FontFieldUpdate { @XmlElement(required = true) protected String assetHandle; protected String fontName; protected String postscriptName; protected String rtfName; protected String fontFamily; protected String style; protected String typeName; protected String type; /** * Gets the value of the assetHandle property. * * @return * possible object is * {@link String } * */ public String getAssetHandle() { return assetHandle; } /** * Sets the value of the assetHandle property. * * @param value * allowed object is * {@link String } * */ public void setAssetHandle(String value) { this.assetHandle = value; } /** * Gets the value of the fontName property. * * @return * possible object is * {@link String } * */ public String getFontName() { return fontName; } /** * Sets the value of the fontName property. * * @param value * allowed object is * {@link String } * */ public void setFontName(String value) { this.fontName = value; } /** * Gets the value of the postscriptName property. * * @return * possible object is * {@link String } * */ public String getPostscriptName() { return postscriptName; } /** * Sets the value of the postscriptName property. * * @param value * allowed object is * {@link String } * */ public void setPostscriptName(String value) { this.postscriptName = value; } /** * Gets the value of the rtfName property. * * @return * possible object is * {@link String } * */ public String getRtfName() { return rtfName; } /** * Sets the value of the rtfName property. * * @param value * allowed object is * {@link String } * */ public void setRtfName(String value) { this.rtfName = value; } /** * Gets the value of the fontFamily property. * * @return * possible object is * {@link String } * */ public String getFontFamily() { return fontFamily; } /** * Sets the value of the fontFamily property. * * @param value * allowed object is * {@link String } * */ public void setFontFamily(String value) { this.fontFamily = value; } /** * Gets the value of the style property. * * @return * possible object is * {@link String } * */ public String getStyle() { return style; } /** * Sets the value of the style property. * * @param value * allowed object is * {@link String } * */ public void setStyle(String value) { this.style = value; } /** * Gets the value of the typeName property. * * @return * possible object is * {@link String } * */ public String getTypeName() { return typeName; } /** * Sets the value of the typeName property. * * @param value * allowed object is * {@link String } * */ public void setTypeName(String value) { this.typeName = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy