JobTitle property

String? JobTitle
Gets or sets the contact's job title.

Implementation

String? get JobTitle => this.PropertyBag[ContactSchema.JobTitle] as String?;
void JobTitle=(String? value)

Implementation

set JobTitle(String? value) =>
    this.PropertyBag[ContactSchema.JobTitle] = value;