-
Notifications
You must be signed in to change notification settings - Fork 0
PlatformOptions
Adnan Mujagić edited this page Aug 5, 2024
·
1 revision
Creates a builder instance used to build a new instance of PlatformOptions
.
none
-
PlatformOptionsBuilder
- Instance of the builder.
let platformOptionsBuilder = 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.
let platformOptions = PlatformOptions.builder().setApplicationId("my-application-id").build();
let applicationId = platformOptions.applicationId;
Getter for the entityId
field.
none
-
string
- Value of theentityId
field representing the identifier of the entity that the call should be associated with.
let platformOptions = PlatformOptions.builder().setEntityId("my-entity-id").build();
let entityId = platformOptions.entityId;