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

com.bronto.api.model.BrandingSettings 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 brandingSettings complex type. * *

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

 * <complexType name="brandingSettings">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="brandingImage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="brandingImageLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="brandingImageUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "brandingSettings", propOrder = { "brandingImage", "brandingImageLink", "brandingImageUrl" }) public class BrandingSettings { protected String brandingImage; protected String brandingImageLink; protected String brandingImageUrl; /** * Gets the value of the brandingImage property. * * @return * possible object is * {@link String } * */ public String getBrandingImage() { return brandingImage; } /** * Sets the value of the brandingImage property. * * @param value * allowed object is * {@link String } * */ public void setBrandingImage(String value) { this.brandingImage = value; } /** * Gets the value of the brandingImageLink property. * * @return * possible object is * {@link String } * */ public String getBrandingImageLink() { return brandingImageLink; } /** * Sets the value of the brandingImageLink property. * * @param value * allowed object is * {@link String } * */ public void setBrandingImageLink(String value) { this.brandingImageLink = value; } /** * Gets the value of the brandingImageUrl property. * * @return * possible object is * {@link String } * */ public String getBrandingImageUrl() { return brandingImageUrl; } /** * Sets the value of the brandingImageUrl property. * * @param value * allowed object is * {@link String } * */ public void setBrandingImageUrl(String value) { this.brandingImageUrl = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy