BillingInformation property

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

Implementation

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

Implementation

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