The LevelAccessPlatformConfiguration encapsulates all of the Level Access Platform-specific properties required for integration.
Methods
getApiKey() → (nullable) {string}
Purpose
The API key used in requests to LevelAccessPlatform services.
Example
getApiKey() {
return Configuration.INSTANCE.levelAccessPlatformConfiguration.apiKey;
}
getDigitalPropertyId() → (nullable) {string}
Purpose
The digital asset id used when opening a scan session in the LevelAccessPlatform.
Example
getDigitalPropertyId() {
return Configuration.INSTANCE.levelAccessPlatformConfiguration.digitalPropertyId;
}
getOrgInstanceUrl() → (nullable) {string}
Purpose
The base organization URL where LevelAccessPlatform services are located.
Example
getOrgInstanceUrl() {
return Configuration.INSTANCE.levelAccessPlatformConfiguration.orgInstanceUrl;
}
getScanTagId() → (nullable) {string}
Purpose
The scan tag id used when opening a scan session in the LevelAccessPlatform.
Example
getScanTagId() {
return Configuration.INSTANCE.levelAccessPlatformConfiguration.scanTagId;
}
getWorkspaceId() → (nullable) {string}
Purpose
The id or the workspace used when opening a scan session in the LevelAccessPlatform.
Example
getWorkspaceId() {
return Configuration.INSTANCE.levelAccessPlatformConfiguration.workspaceId;
}
Comments
0 comments
Article is closed for comments.