-
Notifications
You must be signed in to change notification settings - Fork 0
PlatformOptionsBuilder
Adnan Mujagić edited this page Aug 5, 2024
·
1 revision
setApplicationId(_applicationId: string): PlatformOptionsBuilder
setEntityId(_entityId: string): PlatformOptionsBuilder
build(): PlatformOptions
Setter for the applicationId
field.
-
applicationId
:string
- Value representing the identifier of the application that the call should be associated with.
-
PlatformOptionsBuilder
- Instance of the builder.
let platformOptionsBuilder = PlatformOptions.builder();
platformOptionsBuilder.setApplicationId("my-application-id");
Setter for the entityId
field.
-
entityId
:string
- Value representing the identifier of the entity that the call should be associated with.
-
PlatformOptionsBuilder
- Instance of the builder.
let platformOptionsBuilder = PlatformOptions.builder();
platformOptionsBuilder.setEntityId("my-entity-id");
Builds a new instance of the PlatformOptions
.
none
-
PlatformOptions
- Instance of thePlatformOptions
.
let platformOptionsBuilder = PlatformOptions.builder();
let platformOptions = platformOptionsBuilder.build();