Class ContactPersonalDetailsModel
- Namespace
- Kentico.Xperience.Admin.DigitalMarketing.UIPages
- Assembly
- Kentico.Xperience.Admin.DigitalMarketing.dll
Represents contact personal details form.
public class ContactPersonalDetailsModel
- Inheritance
-
objectContactPersonalDetailsModel
- Extension Methods
Properties
Address
Contact address.
[MaxLengthValidationRule(100)]
public string Address { get; set; }
Property Value
- string
Birthday
Contact birthday.
public DateTime? Birthday { get; set; }
Property Value
- DateTime?
BusinessPhone
Contact business phone.
[MaxLengthValidationRule(26)]
public string BusinessPhone { get; set; }
Property Value
- string
City
Contact city.
[MaxLengthValidationRule(100)]
public string City { get; set; }
Property Value
- string
CompanyName
Contact company name.
[MaxLengthValidationRule(100)]
public string CompanyName { get; set; }
Property Value
- string
Country
Contact country.
[ObjectIdSelectorComponent("cms.country", Label = "{$digitalmarketing.contact.country$}", Order = 16)]
public IEnumerable<int> Country { get; set; }
Property Value
- IEnumerable<int>
Contact e-mail.
[EmailValidationRule]
[MaxLengthValidationRule(254)]
public string Email { get; set; }
Property Value
- string
FirstName
Contact first name.
[MaxLengthValidationRule(100)]
public string FirstName { get; set; }
Property Value
- string
Gender
Contact gender.
public string Gender { get; set; }
Property Value
- string
JobTitle
Contact job title.
[MaxLengthValidationRule(50)]
public string JobTitle { get; set; }
Property Value
- string
LastName
Contact last name.
[MaxLengthValidationRule(100)]
public string LastName { get; set; }
Property Value
- string
MiddleName
Contact middle name.
[MaxLengthValidationRule(100)]
public string MiddleName { get; set; }
Property Value
- string
MobilePhone
Contact mobile phone.
[MaxLengthValidationRule(26)]
public string MobilePhone { get; set; }
Property Value
- string
Notes
Contact notes.
public string Notes { get; set; }
Property Value
- string
State
Contact state.
[FormComponentConfiguration(typeof(StateConfigurator), "Country")]
public string State { get; set; }
Property Value
- string
ZIP
Contact ZIP code.
[MaxLengthValidationRule(100)]
public string ZIP { get; set; }
Property Value
- string