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

com.google.api.ads.admanager.jaxws.v202408.NativeStyle Maven / Gradle / Ivy

The newest version!
// Copyright 2024 Google LLC
//
// 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.admanager.jaxws.v202408;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
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.
 *           
 * 
 * 

Java class for NativeStyle complex type. * *

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

 * <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/v202408}Targeting" minOccurs="0"/>
 *         <element name="status" type="{https://www.google.com/apis/ads/publisher/v202408}NativeStyleStatus" minOccurs="0"/>
 *         <element name="size" type="{https://www.google.com/apis/ads/publisher/v202408}Size" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NativeStyle", propOrder = { "id", "name", "htmlSnippet", "cssSnippet", "creativeTemplateId", "isFluid", "targeting", "status", "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; @XmlSchemaType(name = "string") protected NativeStyleStatus status; 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 status property. * * @return * possible object is * {@link NativeStyleStatus } * */ public NativeStyleStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link NativeStyleStatus } * */ public void setStatus(NativeStyleStatus value) { this.status = 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy