-
Notifications
You must be signed in to change notification settings - Fork 2
PlatformOptions
Adnan Mujagić edited this page Aug 5, 2024
·
1 revision
static PlatformOptions.Builder builder()
String getApplicationId()
String getEntityId()
static class Builder
Creates a builder instance used to build a new instance of PlatformOptions
.
none
-
PlatformOptions.Builder
- Instance of the builder.
PlatformOptions.Builder builder = PlatformOptions.builder();
Getter for the applicationId
field.
none
-
String
- Value of theapplicationId
field representing the identifier of the application that the call should be associated with.
PlatformOptions platformOptions = PlatformOptions.builder().applicationId("my-application-id").build();
String applicationId = platformOptions.getApplicationId();
Getter for the entityId
field.
none
-
String
- Value of theentityId
field representing the identifier of the entity that the call should be associated with.
PlatformOptions platformOptions = PlatformOptions.builder().entityId("my-entity-id").build();
String entityId = platformOptions.getEntityId();
Builder applicationId(String applicationId)
Builder entityId(String entityId)
ApplicationCallOptions build()
Setter for the applicationId
field.
-
applicationId
:String
- Value representing the identifier of the application that the call should be associated with.
-
PlatformOptions.Builder
- Instance of the builder.
PlatformOptions.Builder platformOptionsBuilder = PlatformOptions.builder().applicationId("my-application-id");
Setter for the entityId
field.
-
entityId
:String
- Value representing the identifier of the entity that the call should be associated with.
-
PlatformOptions.Builder
- Instance of the builder.
PlatformOptions.Builder platformOptionsBuilder = PlatformOptions.builder().entityId("my-entity-id");
Builds a new instance of the PlatformOptions
.
none
-
PlatformOptions
- Instance of thePlatformOptions
.
PlatformOptions.Builder platformOptionsBuilder = PlatformOptions.builder();
PlatformOptions platformOptions = platformOptionsBuilder.build();