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

com.google.api.ads.admanager.jaxws.v202402.CustomPacingGoal 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.v202402;

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


/**
 * 
 *             An interval of a {@link CustomPacingCurve}. A custom pacing goal contains a start time and an
 *             amount. The goal will apply until either the next custom pacing goal's {@code getStartTime} or
 *             the line item's end time if it is the last goal.
 *           
 * 
 * 

Java class for CustomPacingGoal complex type. * *

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

 * <complexType name="CustomPacingGoal">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="startDateTime" type="{https://www.google.com/apis/ads/publisher/v202402}DateTime" minOccurs="0"/>
 *         <element name="useLineItemStartDateTime" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomPacingGoal", propOrder = { "startDateTime", "useLineItemStartDateTime", "amount" }) public class CustomPacingGoal { protected DateTime startDateTime; protected Boolean useLineItemStartDateTime; protected Long amount; /** * Gets the value of the startDateTime property. * * @return * possible object is * {@link DateTime } * */ public DateTime getStartDateTime() { return startDateTime; } /** * Sets the value of the startDateTime property. * * @param value * allowed object is * {@link DateTime } * */ public void setStartDateTime(DateTime value) { this.startDateTime = value; } /** * Gets the value of the useLineItemStartDateTime property. * * @return * possible object is * {@link Boolean } * */ public Boolean isUseLineItemStartDateTime() { return useLineItemStartDateTime; } /** * Sets the value of the useLineItemStartDateTime property. * * @param value * allowed object is * {@link Boolean } * */ public void setUseLineItemStartDateTime(Boolean value) { this.useLineItemStartDateTime = value; } /** * Gets the value of the amount property. * * @return * possible object is * {@link Long } * */ public Long getAmount() { return amount; } /** * Sets the value of the amount property. * * @param value * allowed object is * {@link Long } * */ public void setAmount(Long value) { this.amount = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy