Package com.daml.ledger.api.v1
Interface CommandsOuterClass.ExerciseCommandOrBuilder
- 
- All Superinterfaces:
 com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
 CommandsOuterClass.ExerciseCommand,CommandsOuterClass.ExerciseCommand.Builder
- Enclosing class:
 - CommandsOuterClass
 
public static interface CommandsOuterClass.ExerciseCommandOrBuilder extends com.google.protobuf.MessageOrBuilder 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetChoice()The name of the choice the client wants to exercise.ValueOuterClass.ValuegetChoiceArgument()The argument for this choice.ValueOuterClass.ValueOrBuildergetChoiceArgumentOrBuilder()The argument for this choice.com.google.protobuf.ByteStringgetChoiceBytes()The name of the choice the client wants to exercise.java.lang.StringgetContractId()The ID of the contract the client wants to exercise upon.com.google.protobuf.ByteStringgetContractIdBytes()The ID of the contract the client wants to exercise upon.ValueOuterClass.IdentifiergetTemplateId()The template of contract the client wants to exercise.ValueOuterClass.IdentifierOrBuildergetTemplateIdOrBuilder()The template of contract the client wants to exercise.booleanhasChoiceArgument()The argument for this choice.booleanhasTemplateId()The template of contract the client wants to exercise.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof 
 - 
 
 - 
 
- 
- 
Method Detail
- 
hasTemplateId
boolean hasTemplateId()
The template of contract the client wants to exercise. Required
.com.daml.ledger.api.v1.Identifier template_id = 1 [json_name = "templateId"];- Returns:
 - Whether the templateId field is set.
 
 
- 
getTemplateId
ValueOuterClass.Identifier getTemplateId()
The template of contract the client wants to exercise. Required
.com.daml.ledger.api.v1.Identifier template_id = 1 [json_name = "templateId"];- Returns:
 - The templateId.
 
 
- 
getTemplateIdOrBuilder
ValueOuterClass.IdentifierOrBuilder getTemplateIdOrBuilder()
The template of contract the client wants to exercise. Required
.com.daml.ledger.api.v1.Identifier template_id = 1 [json_name = "templateId"]; 
- 
getContractId
java.lang.String getContractId()
The ID of the contract the client wants to exercise upon. Must be a valid LedgerString (as described in ``value.proto``). Required
string contract_id = 2 [json_name = "contractId"];- Returns:
 - The contractId.
 
 
- 
getContractIdBytes
com.google.protobuf.ByteString getContractIdBytes()
The ID of the contract the client wants to exercise upon. Must be a valid LedgerString (as described in ``value.proto``). Required
string contract_id = 2 [json_name = "contractId"];- Returns:
 - The bytes for contractId.
 
 
- 
getChoice
java.lang.String getChoice()
The name of the choice the client wants to exercise. Must be a valid NameString (as described in ``value.proto``) Required
string choice = 3 [json_name = "choice"];- Returns:
 - The choice.
 
 
- 
getChoiceBytes
com.google.protobuf.ByteString getChoiceBytes()
The name of the choice the client wants to exercise. Must be a valid NameString (as described in ``value.proto``) Required
string choice = 3 [json_name = "choice"];- Returns:
 - The bytes for choice.
 
 
- 
hasChoiceArgument
boolean hasChoiceArgument()
The argument for this choice. Required
.com.daml.ledger.api.v1.Value choice_argument = 4 [json_name = "choiceArgument"];- Returns:
 - Whether the choiceArgument field is set.
 
 
- 
getChoiceArgument
ValueOuterClass.Value getChoiceArgument()
The argument for this choice. Required
.com.daml.ledger.api.v1.Value choice_argument = 4 [json_name = "choiceArgument"];- Returns:
 - The choiceArgument.
 
 
- 
getChoiceArgumentOrBuilder
ValueOuterClass.ValueOrBuilder getChoiceArgumentOrBuilder()
The argument for this choice. Required
.com.daml.ledger.api.v1.Value choice_argument = 4 [json_name = "choiceArgument"]; 
 - 
 
 -