paynow 0.4.0

Rust support for Paynow Zimbabwe's HTTP API
Documentation
use paynow::payment::{Response, Submit};
use paynow::{ApiKey, Client};
use rust_decimal::Decimal;
use serde::Deserialize;
use std::error::Error;
use url::Url;

#[derive(Deserialize, Debug)]
struct Config {
    id: u64,
    key: ApiKey,
}

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let config: Config = envy::prefixed("PAYNOW_INTEGRATION_").from_env()?;
    let client = Client::new(config.id, config.key);
    let response = initiate_payment(&client).await?;
    dbg!(client.poll_status(response.take_poll_url()).await?);
    Ok(())
}

async fn initiate_payment(client: &Client) -> Result<Response, Box<dyn Error>> {
    let reference = "c1dfbc5b-9e5b-40bf-846e-22006078a436";
    let amount = Decimal::new(3141874, 2);
    let return_url = Url::parse("https://example.net")?;
    let result_url = Url::parse("https://example.net")?;
    let response = client
        .payment(reference, amount, &return_url, &result_url)
        .submit(client)
        .await?;
    Ok(response)
}