Class ApiKey

A simple container to store a provider name and a provider api key

Source : file containers/ApiKey.js at line 31

Constructor

new ApiKey ( providerName, providerKey )

The constructor

Source : file containers/ApiKey.js at line 53

Parameters

Name Type Description
providerName String

The provider name

providerKey String

The provider api key

Public getters and setters

readonly get jsonObject : JsonObject

An object literal with the ApiKey properties and without any methods. This object can be used with the JSON object

Source : file containers/ApiKey.js at line 79

readonly get providerKey : String

The provider api key

Source : file containers/ApiKey.js at line 71

readonly get providerName : String

The provider name

Source : file containers/ApiKey.js at line 64

Private properties

#providerKey : String

The provider api key

Source : file containers/ApiKey.js at line 45

#providerName : String

The provider name

Source : file containers/ApiKey.js at line 38