PayPal.Api.Invoice.Remind C# (CSharp) Method

Remind() public method

Sends a reminder about an invoice, by ID, to a customer. In the JSON request body, include a `notification` object that defines the subject of the reminder and other details.
public Remind ( APIContext apiContext, Notification notification ) : void
apiContext APIContext APIContext used for the API call.
notification Notification Notification
return void
        public void Remind(APIContext apiContext, Notification notification)
        {
            Invoice.Remind(apiContext, this.id, notification);
        }

Same methods

Invoice::Remind ( APIContext apiContext, string invoiceId, Notification notification ) : void

Usage Example

示例#1
0
 /// <summary>
 /// Sends a reminder about an invoice, by ID, to a customer. In the JSON request body, include a `notification` object that defines the subject of the reminder and other details.
 /// </summary>
 /// <param name="apiContext">APIContext used for the API call.</param>
 /// <param name="notification">Notification</param>
 public void Remind(APIContext apiContext, Notification notification)
 {
     Invoice.Remind(apiContext, this.id, notification);
 }