BillingInformation property

String? BillingInformation
Gets or sets the billing information of the task.

Implementation

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

Implementation

set BillingInformation(String? value) =>
    this.PropertyBag[TaskSchema.BillingInformation] = value;