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 IDescribePathAssistantStep { /** * element : closed of type {http://www.w3.org/2001/XMLSchema}boolean * java type: boolean */ public boolean getClosed(); public boolean isClosed(); public void setClosed(boolean closed); /** * element : converted of type {http://www.w3.org/2001/XMLSchema}boolean * java type: boolean */ public boolean getConverted(); public boolean isConverted(); public void setConverted(boolean converted); /** * element : fields of type {urn:partner.soap.sforce.com}DescribePathAssistantField * java type: com.sforce.soap.partner.DescribePathAssistantField[] */ public com.sforce.soap.partner.IDescribePathAssistantField[] getFields(); public void setFields(com.sforce.soap.partner.IDescribePathAssistantField[] fields); /** * element : info of type {http://www.w3.org/2001/XMLSchema}string * java type: java.lang.String */ public java.lang.String getInfo(); public void setInfo(java.lang.String info); /** * element : layoutSection of type {urn:partner.soap.sforce.com}DescribeLayoutSection * java type: com.sforce.soap.partner.DescribeLayoutSection */ public com.sforce.soap.partner.IDescribeLayoutSection getLayoutSection(); public void setLayoutSection(com.sforce.soap.partner.IDescribeLayoutSection layoutSection); /** * element : picklistLabel of type {http://www.w3.org/2001/XMLSchema}string * java type: java.lang.String */ public java.lang.String getPicklistLabel(); public void setPicklistLabel(java.lang.String picklistLabel); /** * element : picklistValue of type {http://www.w3.org/2001/XMLSchema}string * java type: java.lang.String */ public java.lang.String getPicklistValue(); public void setPicklistValue(java.lang.String picklistValue); /** * element : won of type {http://www.w3.org/2001/XMLSchema}boolean * java type: boolean */ public boolean getWon(); public boolean isWon(); public void setWon(boolean won); }