/*
* Naurt API
*
* OpenAPI specification for Naurt's APIs.
*
* The version of the OpenAPI document: 0.1.4
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// FinalDestinationSourceIdResponse : An object containing information on source IDs. Source IDs refer to underlying IDs from address data sets. Currently supporting UPRN and UDPRN in the UK referring to the OrdnanceSurvey datasets
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct FinalDestinationSourceIdResponse {
#[serde(rename = "os_uprn", skip_serializing_if = "Option::is_none")]
pub os_uprn: Option<String>,
#[serde(rename = "os_udprn", skip_serializing_if = "Option::is_none")]
pub os_udprn: Option<String>,
}
impl FinalDestinationSourceIdResponse {
/// An object containing information on source IDs. Source IDs refer to underlying IDs from address data sets. Currently supporting UPRN and UDPRN in the UK referring to the OrdnanceSurvey datasets
pub fn new() -> FinalDestinationSourceIdResponse {
FinalDestinationSourceIdResponse {
os_uprn: None,
os_udprn: None,
}
}
}