#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct PostContractSourceResponse {
#[serde(rename = "contractSourceId")]
pub contract_source_id: String,
#[serde(rename = "intermediateIds")]
pub intermediate_ids: ::std::collections::HashMap<String, String>,
}
impl PostContractSourceResponse {
pub fn new(
contract_source_id: String,
intermediate_ids: ::std::collections::HashMap<String, String>,
) -> PostContractSourceResponse {
PostContractSourceResponse {
contract_source_id,
intermediate_ids,
}
}
}