You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 line
487 B

  1. # coding: utf-8
  2. from __future__ import absolute_import
  3. from datetime import date, datetime # noqa: F401
  4. from typing import List, Dict, Optional # noqa: F401
  5. from core import util
  6. from pydantic import BaseModel
  7. class contact_microsip(BaseModel):
  8. firstname: Optional[str]
  9. lastname: Optional[str]
  10. phone: Optional[str]
  11. mobile: Optional[str]
  12. email: Optional[str]
  13. address: Optional[str]
  14. city: Optional[str]
  15. state: Optional[str]
  16. zip: Optional[str]