I'm trying to create a contact from his last name, first name and phone number using the ODOO ORM with the "create()" method.
the method used is:
"""
#data for contact record
#values={"":"","":""}
contact_id = self.env['res.partner'].sudo().create(values)
"""
but I am looking for the model structure and the fields of the res.partner to create the data dictionary before calling the method