// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
#![allow(clippy::too_many_arguments, clippy::new_without_default)]
use crate::types::Contact;
impl Contact {
/// This function creates an empty struct for the object Contact.
pub fn new(phone_number: String, first_name: String) -> Self {
Self {
phone_number,
first_name,
last_name: None,
user_id: None,
vcard: None,
}
}
}