Skip to content

PlatformOptionsBuilder

Adnan Mujagić edited this page Aug 5, 2024 · 1 revision



setApplicationId(applicationId)

Description

Setter for the applicationId field.

Arguments

  • applicationId: string - Value representing the identifier of the application that the call should be associated with.

Returns

Example

let platformOptionsBuilder = PlatformOptions.builder();
platformOptionsBuilder.setApplicationId("my-application-id");



setEntityId(entityId)

Description

Setter for the entityId field.

Arguments

  • entityId: string - Value representing the identifier of the entity that the call should be associated with.

Returns

Example

let platformOptionsBuilder = PlatformOptions.builder();
platformOptionsBuilder.setEntityId("my-entity-id");



build()

Description

Builds a new instance of the PlatformOptions.

Arguments

  • none

Returns

Example

let platformOptionsBuilder = PlatformOptions.builder();
let platformOptions = platformOptionsBuilder.build();

Tutorials

Migration guides

Reference documentation

Clone this wiki locally