@@ -47,27 +47,6 @@ public static BitcoinReceiverCollection all(Map<String, Object> params, RequestO
47
47
return list (params , options );
48
48
}
49
49
50
- public static BitcoinReceiver create (Map <String , Object > params ) throws StripeException {
51
- return create (params , null );
52
- }
53
-
54
- public static BitcoinReceiver create (Map <String , Object > params , RequestOptions options )
55
- throws StripeException {
56
- return request (RequestMethod .POST , String .format ("%s/%s" , Stripe .getApiBase (),
57
- "v1/bitcoin/receivers" ), params , BitcoinReceiver .class , options );
58
- }
59
-
60
- @ Override
61
- public BitcoinReceiver delete () throws StripeException {
62
- return delete (null );
63
- }
64
-
65
- @ Override
66
- public BitcoinReceiver delete (RequestOptions options ) throws StripeException {
67
- return request (RequestMethod .DELETE , this .getInstanceUrl (), null , BitcoinReceiver .class ,
68
- options );
69
- }
70
-
71
50
public static BitcoinReceiverCollection list (Map <String , Object > params ) throws StripeException {
72
51
return list (params , null );
73
52
}
@@ -87,18 +66,6 @@ public static BitcoinReceiver retrieve(String id, RequestOptions options) throws
87
66
"v1/bitcoin/receivers" , id ), null , BitcoinReceiver .class , options );
88
67
}
89
68
90
- @ Override
91
- public BitcoinReceiver update (Map <String , Object > params ) throws StripeException {
92
- return update (params , null );
93
- }
94
-
95
- @ Override
96
- public BitcoinReceiver update (Map <String , Object > params , RequestOptions options )
97
- throws StripeException {
98
- return request (RequestMethod .POST , this .getInstanceUrl (), params , BitcoinReceiver .class ,
99
- options );
100
- }
101
-
102
69
@ Override
103
70
protected String getInstanceUrl () {
104
71
String result = super .getInstanceUrl ();
0 commit comments