AI-generated Key Takeaways
-
PayClient.RequestType
is an annotation that defines request types for checking Google Pay API availability. -
These request types are used with
PayClient.getPayApiAvailabilityStatus(int)
to determine supported features. -
Three key request types are available:
CARD_PROVISIONING_DEEP_LINK
,SAVE_PASSES
, andSAVE_PASSES_JWT
, each corresponding to a specific Google Pay API functionality. -
It inherits methods from the
java.lang.annotation.Annotation
interface likeannotationType()
,equals()
,hashCode()
, andtoString()
.
All possible request types that will be used by callers of
PayClient.getPayApiAvailabilityStatus(int)
.
Constant Summary
int | CARD_PROVISIONING_DEEP_LINK | Checks support of card provisioning deep links. |
int | SAVE_PASSES | Checks availability of the
PayClient.savePasses(String, Activity, int) API. |
int | SAVE_PASSES_JWT | Checks availability of the
PayClient.savePassesJwt(String, Activity, int) API. |
Inherited Method Summary
Constants
public static final int CARD_PROVISIONING_DEEP_LINK
Checks support of card provisioning deep links.
public static final int SAVE_PASSES
Checks availability of the
PayClient.savePasses(String, Activity, int)
API.
public static final int SAVE_PASSES_JWT
Checks availability of the
PayClient.savePassesJwt(String, Activity, int)
API.