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

Create() public method

public Create ( APIContext apiContext ) : Invoice
apiContext APIContext APIContext used for the API call.
return Invoice
        public Invoice Create(APIContext apiContext)
        {
            return Invoice.Create(apiContext, this);
        }

Same methods

Invoice::Create ( APIContext apiContext, Invoice invoice ) : Invoice

Usage Example

コード例 #1
0
 /// <param name="apiContext">APIContext used for the API call.</param>
 /// <returns>Invoice</returns>
 public Invoice Create(APIContext apiContext)
 {
     return(Invoice.Create(apiContext, this));
 }
All Usage Examples Of PayPal.Api.Invoice::Create