// Copyright 2017 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package com.google.api.ads.dfp.jaxws.v201702; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * * Used to define the look and feel of native ads, for both web and apps. * Native styles determine how native creatives look for a segment of inventory. * * * <p>Java class for NativeStyle complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="NativeStyle"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="htmlSnippet" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="cssSnippet" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="creativeTemplateId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="isFluid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="targeting" type="{https://www.google.com/apis/ads/publisher/v201702}Targeting" minOccurs="0"/> * <element name="size" type="{https://www.google.com/apis/ads/publisher/v201702}Size" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NativeStyle", propOrder = { "id", "name", "htmlSnippet", "cssSnippet", "creativeTemplateId", "isFluid", "targeting", "size" }) public class NativeStyle { protected Long id; protected String name; protected String htmlSnippet; protected String cssSnippet; protected Long creativeTemplateId; protected Boolean isFluid; protected Targeting targeting; protected Size size; /** * Gets the value of the id property. * * @return * possible object is * {@link Long } * */ public Long getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Long } * */ public void setId(Long value) { this.id = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the htmlSnippet property. * * @return * possible object is * {@link String } * */ public String getHtmlSnippet() { return htmlSnippet; } /** * Sets the value of the htmlSnippet property. * * @param value * allowed object is * {@link String } * */ public void setHtmlSnippet(String value) { this.htmlSnippet = value; } /** * Gets the value of the cssSnippet property. * * @return * possible object is * {@link String } * */ public String getCssSnippet() { return cssSnippet; } /** * Sets the value of the cssSnippet property. * * @param value * allowed object is * {@link String } * */ public void setCssSnippet(String value) { this.cssSnippet = value; } /** * Gets the value of the creativeTemplateId property. * * @return * possible object is * {@link Long } * */ public Long getCreativeTemplateId() { return creativeTemplateId; } /** * Sets the value of the creativeTemplateId property. * * @param value * allowed object is * {@link Long } * */ public void setCreativeTemplateId(Long value) { this.creativeTemplateId = value; } /** * Gets the value of the isFluid property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsFluid() { return isFluid; } /** * Sets the value of the isFluid property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsFluid(Boolean value) { this.isFluid = value; } /** * Gets the value of the targeting property. * * @return * possible object is * {@link Targeting } * */ public Targeting getTargeting() { return targeting; } /** * Sets the value of the targeting property. * * @param value * allowed object is * {@link Targeting } * */ public void setTargeting(Targeting value) { this.targeting = value; } /** * Gets the value of the size property. * * @return * possible object is * {@link Size } * */ public Size getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is * {@link Size } * */ public void setSize(Size value) { this.size = value; } }