pub struct GetBatchUserFee {
pub currency_pairs: String,
pub credentials: Option<Credentials>,
}Expand description
Request for retrieving trading fees for multiple currency pairs
Fields§
§currency_pairs: StringComma-separated list of currency pairs to get fees for
credentials: Option<Credentials>API credentials for authentication
Implementations§
Source§impl GetBatchUserFee
impl GetBatchUserFee
Sourcepub fn new(currency_pairs: &str) -> Self
pub fn new(currency_pairs: &str) -> Self
Creates a new GetBatchUserFee request with currency pairs
Sourcepub fn credentials(self, creds: Credentials) -> Self
pub fn credentials(self, creds: Credentials) -> Self
Sets the API credentials for authentication
Trait Implementations§
Source§impl From<GetBatchUserFee> for Request
impl From<GetBatchUserFee> for Request
Source§fn from(request: GetBatchUserFee) -> Request
fn from(request: GetBatchUserFee) -> Request
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetBatchUserFee
impl RefUnwindSafe for GetBatchUserFee
impl Send for GetBatchUserFee
impl Sync for GetBatchUserFee
impl Unpin for GetBatchUserFee
impl UnsafeUnpin for GetBatchUserFee
impl UnwindSafe for GetBatchUserFee
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more