-
Notifications
You must be signed in to change notification settings - Fork 3
User Defined Models
This UDM represents the Json field of a vSDK Setting record object from vault. It is defined as a User-defined model using the @UserDefinedModelInfo
annotation.
@UserDefinedModelInfo()
public interface ExampleSettings extends UserDefinedModel
The values of Json field of the vSDK Setting record are defined as model properties using the @UserDefinedProperty annotation
.
@UserDefinedProperty(name = "batch_size")
BigDecimal getBatchSize();
void setBatchSize(BigDecimal batchSize);
This UDM represents a single vsdk_setting__c record from a remote vault. It is defined as a User-defined model using the @UserDefinedModelInfo
annotation.
This UDM represents the VQL query response with data from Vault. It is defined as a User-defined model using the @UserDefinedModelInfo
annotation. The include UserDefinedPropertyInclude.NON_NULL
enum specifies that this field is included in the JSON only when not null.
@UserDefinedModelInfo(include = UserDefinedPropertyInclude.NON_NULL)
Home
Trigger
User-Defined Service
User-Defined Models