threescalers/http/
endpoints.rs

1/// Static endpoints from the 3scale Apisonator service
2///
3use super::Method;
4
5pub const AUTHORIZE_ENDPOINT: (Method, &str) = (Method::GET, "/transactions/authorize.xml");
6pub const AUTHREP_ENDPOINT: (Method, &str) = (Method::GET, "/transactions/authrep.xml");
7pub const REPORT_ENDPOINT: (Method, &str) = (Method::POST, "/transactions.xml");
8pub const OAUTH_AUTHORIZE_ENDPOINT: (Method, &str) =
9    (Method::GET, "/transactions/oauth_authorize.xml");
10pub const OAUTH_AUTHREP_ENDPOINT: (Method, &str) = (Method::GET, "/transactions/oauth_authrep.xml");