Type Alias FetchChargesResponse

Source
pub type FetchChargesResponse = StdResp<Option<Vec<ChargesData>>>;

Aliased Type§

pub struct FetchChargesResponse {
    pub success: bool,
    pub data: Option<Vec<ChargesData>>,
    pub message: Option<String>,
}

Fields§

§success: bool§data: Option<Vec<ChargesData>>§message: Option<String>