Skip to main content

07_refund_request/
07_refund_request.rs

1use storekit::Refund;
2
3fn main() {
4    println!(
5        "refund request result: {:?}",
6        Refund::begin_for_transaction_id(0)
7    );
8}