Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1x 1x | class AppsFlyerConstants {
// Adding method constants
static readonly SUBSCRIPTION_VALIDATION_SUCCESS: string = 'subscriptionValidationSuccess';
static readonly SUBSCRIPTION_VALIDATION_FAILURE: string = 'subscriptionValidationFailure';
static readonly IN_APP_PURCHASE_VALIDATION_SUCCESS: string = 'inAppPurchaseValidationSuccess';
static readonly IN_APP_PURCHASE_VALIDATION_FAILURE: string = 'inAppPurchaseValidationFailure';
static readonly DID_RECEIVE_PURCHASE_REVENUE_VALIDATION_INFO: string =
"onDidReceivePurchaseRevenueValidationInfo";
// Adding key constants
static readonly RESULT: string = "result";
static readonly ERROR: string = "error";
}
export default AppsFlyerConstants; |