use crate::objects::incoming_payment_attempt::IncomingPaymentAttempt;
use serde::Deserialize;
use std::vec::Vec;
#[derive(Deserialize)]
pub struct IncomingPaymentToAttemptsConnection {
#[serde(rename = "incoming_payment_to_attempts_connection_count")]
pub count: i64,
#[serde(rename = "incoming_payment_to_attempts_connection_entities")]
pub entities: Vec<IncomingPaymentAttempt>,
}
pub const FRAGMENT: &str = "
fragment IncomingPaymentToAttemptsConnectionFragment on IncomingPaymentToAttemptsConnection {
__typename
incoming_payment_to_attempts_connection_count: count
incoming_payment_to_attempts_connection_entities: entities {
id
}
}
";