38 lines
1.1 KiB
Java
38 lines
1.1 KiB
Java
package com.sforce.soap.partner;
|
|
|
|
/**
|
|
* This is a generated class for the SObject Enterprise API.
|
|
* Do not edit this file, as your changes will be lost.
|
|
*/
|
|
public interface IDescribeQuickActionParameter {
|
|
|
|
/**
|
|
* element : parameterName of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getParameterName();
|
|
|
|
public void setParameterName(java.lang.String parameterName);
|
|
|
|
/**
|
|
* element : parameterType of type {urn:partner.soap.sforce.com}QuickActionParameterType
|
|
* java type: com.sforce.soap.partner.QuickActionParameterType
|
|
*/
|
|
|
|
public com.sforce.soap.partner.QuickActionParameterType getParameterType();
|
|
|
|
public void setParameterType(com.sforce.soap.partner.QuickActionParameterType parameterType);
|
|
|
|
/**
|
|
* element : parameterValue of type {http://www.w3.org/2001/XMLSchema}string
|
|
* java type: java.lang.String
|
|
*/
|
|
|
|
public java.lang.String getParameterValue();
|
|
|
|
public void setParameterValue(java.lang.String parameterValue);
|
|
|
|
|
|
}
|