Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CoreValidationObserver.java « purchase « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5070eaeebde56ea6550e597a0a8e0815124402e9 (plain)
1
2
3
4
5
6
7
8
9
package com.mapswithme.maps.purchase;

import androidx.annotation.NonNull;

public interface CoreValidationObserver
{
  void onValidatePurchase(@NonNull ValidationStatus status, @NonNull String serverId,
                          @NonNull String vendorId, @NonNull String purchaseData);
}