Data needed to create a new contact within an address book

interface CreateNewContactCommand {
    addressBookUri: string;
    contact: NewContact;
    groupUris?: string[];
}

Properties

addressBookUri: string

The URI of an existing address book the new contact should be added to

contact: NewContact

The data of the contact to create

groupUris?: string[]

URIs of existing groups to add the contact to