Package com.veeva.vault.sdk.api.query
Interface QueryDescribeSubqueryResult
public interface QueryDescribeSubqueryResult
Represents the Query Describe result for a subquery.
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves Query Describe information on the fields in theSELECTclause of the subquery.Retrieves the name of the relationship for the subquery.Retrieves Query Describe information on the subquery target.
-
Method Details
-
getTarget
QueryDescribeTarget getTarget()Retrieves Query Describe information on the subquery target.- Returns:
- a
QueryDescribeTargetdescribing the subquery target
-
getFields
List<QueryDescribeField> getFields()Retrieves Query Describe information on the fields in theSELECTclause of the subquery.- Returns:
- a List of
QueryDescribeFields for the subquery
-
getRelationshipName
String getRelationshipName()Retrieves the name of the relationship for the subquery.- Returns:
- the name of the relationship for the subquery
-