Ejemplo n.º 1
0
 @Deprecated
 public DeletedRecipient delete(String apiKey)
     throws AuthenticationException, InvalidRequestException, APIConnectionException,
         CardException, APIException {
   return delete(RequestOptions.builder().setApiKey(apiKey).build());
 }
Ejemplo n.º 2
0
 @Deprecated
 public static Recipient retrieve(String id, String apiKey)
     throws AuthenticationException, InvalidRequestException, APIConnectionException,
         CardException, APIException {
   return retrieve(id, RequestOptions.builder().setApiKey(apiKey).build());
 }
Ejemplo n.º 3
0
 @Deprecated
 public Recipient update(Map<String, Object> params, String apiKey)
     throws AuthenticationException, InvalidRequestException, APIConnectionException,
         CardException, APIException {
   return update(params, RequestOptions.builder().setApiKey(apiKey).build());
 }
Ejemplo n.º 4
0
 @Deprecated
 public Card createCard(String token, String apiKey)
     throws AuthenticationException, InvalidRequestException, APIConnectionException,
         CardException, APIException {
   return createCard(token, RequestOptions.builder().setApiKey(apiKey).build());
 }