1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
use bon::bon;
use reqwest::Method;
use crate::ApiError;
use crate::error::ApiResult;
use crate::models::merchant::{
CreateMerchantData, CreateMerchantRequest, MerchantCollection, MerchantDetail,
UpdateMerchantData, UpdateMerchantRequest,
};
use crate::models::{DeleteResponse, PaginatedResponse};
use crate::types::MerchantId;
use std::collections::HashMap;
use super::SureClient;
const MAX_PER_PAGE: u32 = 100;
#[bon]
impl SureClient {
/// List merchants
///
/// Retrieves a paginated list of merchants.
///
/// # Arguments
/// * `page` - Page number (default: 1)
/// * `per_page` - Items per page (default: 25, max: 100)
///
/// # Returns
/// A paginated response containing merchants and pagination metadata.
///
/// # Errors
/// Returns `ApiError::Unauthorized` if the API key is invalid.
/// Returns `ApiError::Network` if the request fails due to network issues.
///
/// # Example
/// ```no_run
/// use sure_client_rs::{SureClient, BearerToken};
///
/// # async fn example(client: SureClient) -> Result<(), Box<dyn std::error::Error>> {
/// // Use defaults (page 1, per_page 25)
/// let response = client.get_merchants().call().await?;
///
/// for merchant in response.items.merchants {
/// println!("Merchant: {}", merchant.name);
/// }
///
/// // Or customize parameters using the builder
/// let response = client.get_merchants().page(2).per_page(50).call().await?;
/// # Ok(())
/// # }
/// ```
#[builder]
pub async fn get_merchants(
&self,
#[builder(default = 1)] page: u32,
#[builder(default = 25)] per_page: u32,
) -> ApiResult<PaginatedResponse<MerchantCollection>> {
if per_page > MAX_PER_PAGE {
return Err(ApiError::InvalidParameter(format!(
"per_page cannot exceed {MAX_PER_PAGE}",
)));
}
let mut query_params = HashMap::new();
query_params.insert("page", page.to_string());
query_params.insert("per_page", per_page.to_string());
self.execute_request(Method::GET, "/api/v1/merchants", Some(&query_params), None)
.await
}
/// Get a specific merchant by ID
///
/// Retrieves detailed information about a single merchant.
///
/// # Arguments
/// * `id` - The merchant ID to retrieve
///
/// # Returns
/// Detailed merchant information.
///
/// # Errors
/// Returns `ApiError::NotFound` if the merchant doesn't exist.
/// Returns `ApiError::Unauthorized` if the API key is invalid.
/// Returns `ApiError::Network` if the request fails due to network issues.
///
/// # Example
/// ```no_run
/// use sure_client_rs::{SureClient, BearerToken, MerchantId};
/// use uuid::Uuid;
///
/// # async fn example(client: SureClient) -> Result<(), Box<dyn std::error::Error>> {
/// let merchant_id = MerchantId::new(Uuid::parse_str("550e8400-e29b-41d4-a716-446655440000").unwrap());
/// let merchant = client.get_merchant(&merchant_id).await?;
///
/// println!("Merchant: {}", merchant.name);
/// # Ok(())
/// # }
/// ```
pub async fn get_merchant(&self, id: &MerchantId) -> ApiResult<MerchantDetail> {
self.execute_request(
Method::GET,
&format!("/api/v1/merchants/{}", id),
None,
None,
)
.await
}
}
#[bon]
impl SureClient {
/// Create a new merchant
///
/// Creates a new merchant with the specified details.
///
/// # Arguments
/// * `name` - Merchant name (required)
/// * `color` - Merchant color (hex code)
///
/// # Returns
/// The newly created merchant with full details.
///
/// # Errors
/// Returns `ApiError::ValidationError` if required fields are missing or invalid.
/// Returns `ApiError::Unauthorized` if the API key is invalid.
/// Returns `ApiError::Network` if the request fails due to network issues.
///
/// # Example
/// ```no_run
/// use sure_client_rs::{SureClient, BearerToken};
///
/// # async fn example(client: SureClient) -> Result<(), Box<dyn std::error::Error>> {
/// let merchant = client.create_merchant()
/// .name("Starbucks".to_string())
/// .color("#00704A".to_string())
/// .call()
/// .await?;
///
/// println!("Created merchant: {}", merchant.name);
/// # Ok(())
/// # }
/// ```
#[builder]
pub async fn create_merchant(
&self,
name: String,
color: Option<String>,
) -> ApiResult<MerchantDetail> {
let request = CreateMerchantRequest {
merchant: CreateMerchantData { name, color },
};
self.execute_request(
Method::POST,
"/api/v1/merchants",
None,
Some(serde_json::to_string(&request)?),
)
.await
}
/// Update a merchant
///
/// Updates an existing merchant with new values. Only fields provided will be updated.
///
/// # Arguments
/// * `id` - The merchant ID to update
/// * `name` - Updated merchant name
/// * `color` - Updated merchant color (hex code)
///
/// # Returns
/// The updated merchant.
///
/// # Errors
/// Returns `ApiError::NotFound` if the merchant doesn't exist.
/// Returns `ApiError::ValidationError` if the provided values are invalid.
/// Returns `ApiError::Unauthorized` if the API key is invalid.
/// Returns `ApiError::Network` if the request fails due to network issues.
///
/// # Example
/// ```no_run
/// use sure_client_rs::{SureClient, BearerToken, MerchantId};
/// use uuid::Uuid;
///
/// # async fn example(client: SureClient) -> Result<(), Box<dyn std::error::Error>> {
/// let merchant_id = MerchantId::new(Uuid::new_v4());
///
/// let merchant = client.update_merchant()
/// .id(&merchant_id)
/// .name("Updated Merchant Name".to_string())
/// .color("#FF0000".to_string())
/// .call()
/// .await?;
///
/// println!("Updated merchant: {}", merchant.name);
/// # Ok(())
/// # }
/// ```
#[builder]
pub async fn update_merchant(
&self,
id: &MerchantId,
name: Option<String>,
color: Option<String>,
) -> ApiResult<MerchantDetail> {
let request = UpdateMerchantRequest {
merchant: UpdateMerchantData { name, color },
};
self.execute_request(
Method::PATCH,
&format!("/api/v1/merchants/{}", id),
None,
Some(serde_json::to_string(&request)?),
)
.await
}
/// Delete a merchant
///
/// Permanently deletes a merchant.
///
/// # Arguments
/// * `id` - The merchant ID to delete
///
/// # Returns
/// A confirmation message.
///
/// # Errors
/// Returns `ApiError::NotFound` if the merchant doesn't exist.
/// Returns `ApiError::Unauthorized` if the API key is invalid.
/// Returns `ApiError::Network` if the request fails due to network issues.
///
/// # Example
/// ```no_run
/// use sure_client_rs::{SureClient, BearerToken, MerchantId};
/// use uuid::Uuid;
///
/// # async fn example(client: SureClient) -> Result<(), Box<dyn std::error::Error>> {
/// let merchant_id = MerchantId::new(Uuid::parse_str("550e8400-e29b-41d4-a716-446655440000").unwrap());
/// let response = client.delete_merchant(&merchant_id).await?;
///
/// println!("Deleted: {}", response.message);
/// # Ok(())
/// # }
/// ```
pub async fn delete_merchant(&self, id: &MerchantId) -> ApiResult<DeleteResponse> {
self.execute_request(
Method::DELETE,
&format!("/api/v1/merchants/{}", id),
None,
None,
)
.await
}
}