![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.tooling.metadata.DataPipeline Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
The newest version!
package com.sforce.soap.tooling.metadata;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import com.sforce.soap.tooling.DataPipelineType;
/**
* Java class for DataPipeline complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DataPipeline">
* <complexContent>
* <extension base="{urn:metadata.tooling.soap.sforce.com}Metadata">
* <sequence>
* <element name="apiVersion" type="{http://www.w3.org/2001/XMLSchema}double"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="scriptType" type="{urn:tooling.soap.sforce.com}DataPipelineType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DataPipeline", propOrder = {
"apiVersion",
"label",
"scriptType"
})
public class DataPipeline
extends Metadata
{
protected double apiVersion;
@XmlElement(required = true)
protected String label;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected DataPipelineType scriptType;
/**
* Gets the value of the apiVersion property.
*
*/
public double getApiVersion() {
return apiVersion;
}
/**
* Sets the value of the apiVersion property.
*
*/
public void setApiVersion(double value) {
this.apiVersion = value;
}
/**
* Gets the value of the label property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Gets the value of the scriptType property.
*
* @return
* possible object is
* {@link DataPipelineType }
*
*/
public DataPipelineType getScriptType() {
return scriptType;
}
/**
* Sets the value of the scriptType property.
*
* @param value
* allowed object is
* {@link DataPipelineType }
*
*/
public void setScriptType(DataPipelineType value) {
this.scriptType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy