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

com.glookast.api.capture_info.RequestSetCaptureJobClipName Maven / Gradle / Ivy


package com.glookast.api.capture_info;

import java.io.Serializable;
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 RequestSetCaptureJobClipName complex type. * *

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

 * <complexType name="RequestSetCaptureJobClipName">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="captureJobId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="clipName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RequestSetCaptureJobClipName", propOrder = { "captureJobId", "clipName" }) public class RequestSetCaptureJobClipName implements Serializable { @XmlElement(required = true) protected String captureJobId; @XmlElement(required = true) protected String clipName; /** * Default no-arg constructor * */ public RequestSetCaptureJobClipName() { super(); } /** * Fully-initialising value constructor * */ public RequestSetCaptureJobClipName(final String captureJobId, final String clipName) { this.captureJobId = captureJobId; this.clipName = clipName; } /** * Gets the value of the captureJobId property. * * @return * possible object is * {@link String } * */ public String getCaptureJobId() { return captureJobId; } /** * Sets the value of the captureJobId property. * * @param value * allowed object is * {@link String } * */ public void setCaptureJobId(String value) { this.captureJobId = value; } /** * Gets the value of the clipName property. * * @return * possible object is * {@link String } * */ public String getClipName() { return clipName; } /** * Sets the value of the clipName property. * * @param value * allowed object is * {@link String } * */ public void setClipName(String value) { this.clipName = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy