C# 클래스 PayPal.Api.InvoiceTemplate

Invoicing template.

See PayPal Developer documentation for more information.

상속: PayPalResource
파일 보기 프로젝트 열기: paypal/PayPal-NET-SDK 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Create ( APIContext apiContext ) : InvoiceTemplate

Creates a template.

Delete ( APIContext apiContext ) : void

Deletes a template, by ID.

Delete ( APIContext apiContext, string templateId ) : void

Deletes a template, by ID.

Get ( APIContext apiContext, string templateId ) : InvoiceTemplate

Shows details for a template, by ID.

GetAll ( APIContext apiContext, string fields = "all" ) : InvoiceTemplates

Lists all merchant-created templates. The list shows the emails, addresses, and phone numbers from the merchant profile.

Update ( APIContext apiContext ) : InvoiceTemplate

Updates a template, by ID. In the JSON request body, pass a complete `template` object. The update method does not support partial updates.

메소드 상세

Create() 공개 메소드

Creates a template.
public Create ( APIContext apiContext ) : InvoiceTemplate
apiContext APIContext APIContext used for the API call.
리턴 InvoiceTemplate

Delete() 공개 메소드

Deletes a template, by ID.
public Delete ( APIContext apiContext ) : void
apiContext APIContext APIContext used for the API call.
리턴 void

Delete() 공개 정적인 메소드

Deletes a template, by ID.
public static Delete ( APIContext apiContext, string templateId ) : void
apiContext APIContext APIContext used for the API call.
templateId string The ID of the template to delete.
리턴 void

Get() 공개 정적인 메소드

Shows details for a template, by ID.
public static Get ( APIContext apiContext, string templateId ) : InvoiceTemplate
apiContext APIContext APIContext used for the API call.
templateId string The ID of the template for which to show details.
리턴 InvoiceTemplate

GetAll() 공개 정적인 메소드

Lists all merchant-created templates. The list shows the emails, addresses, and phone numbers from the merchant profile.
public static GetAll ( APIContext apiContext, string fields = "all" ) : InvoiceTemplates
apiContext APIContext APIContext used for the API call.
fields string The fields to return in the response. Value is `all` or `none`. Specify `none` to return only the template name, ID, and default attributes.
리턴 InvoiceTemplates

Update() 공개 메소드

Updates a template, by ID. In the JSON request body, pass a complete `template` object. The update method does not support partial updates.
public Update ( APIContext apiContext ) : InvoiceTemplate
apiContext APIContext APIContext used for the API call.
리턴 InvoiceTemplate