You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.0 KiB
55 lines
1.0 KiB
// |
|
// ADJEventFailure.h |
|
// adjust |
|
// |
|
// Created by Pedro Filipe on 17/02/16. |
|
// Copyright © 2016 adjust GmbH. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
@interface ADJEventFailure : NSObject |
|
|
|
/** |
|
* @brief Message from the adjust backend. |
|
*/ |
|
@property (nonatomic, copy) NSString * message; |
|
|
|
/** |
|
* @brief Timestamp from the adjust backend. |
|
*/ |
|
@property (nonatomic, copy) NSString * timeStamp; |
|
|
|
/** |
|
* @brief Adjust identifier of the device. |
|
*/ |
|
@property (nonatomic, copy) NSString * adid; |
|
|
|
/** |
|
* @brief Event token value. |
|
*/ |
|
@property (nonatomic, copy) NSString * eventToken; |
|
|
|
/** |
|
* @brief Event callback ID. |
|
*/ |
|
@property (nonatomic, copy) NSString *callbackId; |
|
|
|
/** |
|
* @brief Information whether sending of the package will be retried or not. |
|
*/ |
|
@property (nonatomic, assign) BOOL willRetry; |
|
|
|
/** |
|
* @brief Backend response in JSON format. |
|
*/ |
|
@property (nonatomic, strong) NSDictionary *jsonResponse; |
|
|
|
/** |
|
* @brief Initialisation method. |
|
* |
|
* @return ADJEventFailure instance. |
|
*/ |
|
+ (ADJEventFailure *)eventFailureResponseData; |
|
|
|
@end
|
|
|