plaid/model/
identity_verification_template_reference.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::{Serialize, Deserialize};
///The resource ID and version number of the template configuring the behavior of a given Identity Verification.
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct IdentityVerificationTemplateReference {
    ///ID of the associated Identity Verification template.
    pub id: String,
    ///Version of the associated Identity Verification template.
    pub version: i64,
}
impl std::fmt::Display for IdentityVerificationTemplateReference {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}