Skip to content

PlatformOptions

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



static builder()

Description

Creates a builder instance used to build a new instance of PlatformOptions.

Arguments

  • none

Returns

Example

let platformOptionsBuilder = PlatformOptions.builder();



applicationId()

Description

Getter for the applicationId field.

Arguments

  • none

Returns

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

Example

let platformOptions = PlatformOptions.builder().setApplicationId("my-application-id").build();
let applicationId = platformOptions.applicationId;



entityId()

Description

Getter for the entityId field.

Arguments

  • none

Returns

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

Example

let platformOptions = PlatformOptions.builder().setEntityId("my-entity-id").build();
let entityId = platformOptions.entityId;

Tutorials

Migration guides

Reference documentation

Clone this wiki locally