Framework: hummer
class ZLZRequest : NSObject
This class is an abstract description of an operation to be performed, which can be used with theZLZFacade
class to launch the ZOLOZ SDK.
Fields
Field name | Data type | Description |
kZLZCurrentViewControllerKey | NSString | Standard biz config key that is used to represent the current ViewController. |
kZLZPubkey | NSString | Standard biz config key that is used to represent the public key, which is obtained from the ZOLOZ portal and used by the ZOLOZ SDK. |
kZLZChameleonConfigKey | NSString | Standard biz config key that is used to represent the UI configuration file path. For more information about UI configuration, |
kZLZLocaleKey | NSString | Standard biz config key that is used to represent the language, which is used by the ZOLOZ SDK. For more information about LOCALE, |
bizConfig | NSDictionary | Specifies the configuration information of the merchant, including ViewController, public key, locale and so on. You can use the constant value to specify the information in bizConfig, for example: |
zlzConfig | NSString | Specifies the configuration information that is used to start the ZOLOZ SDK. The information is generated by the ZOLOZ server when the merchant calls the |
Methods
initWithzlzConfig: bizConfig:
- (instancetype) initWithzlzConfig:(NSString *)config bizConfig:(NSDictionary *)param;
Constructs the ZLZRequst
Object.
Paramters
Parameter name | Data type | Description |
config | NSString | Specifies the configuration information that is used to start the ZOLOZ SDK. The information is generated by the ZOLOZ server when the merchant calls the |
param | NSDictionary | Specifies the configuration information of the merchant, including ViewController, public key, locale and so on. You can use the constant value to specify the information in bizConfig, for example: |
Returns
Data type | Description |
instancetype | Returns the constructed |
Throws
N/A