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 theSELECT
clause 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
QueryDescribeTarget
describing the subquery target
-
getFields
List<QueryDescribeField> getFields()Retrieves Query Describe information on the fields in theSELECT
clause of the subquery.- Returns:
- a List of
QueryDescribeField
s for the subquery
-
getRelationshipName
String getRelationshipName()Retrieves the name of the relationship for the subquery.- Returns:
- the name of the relationship for the subquery
-