Class LatitudePayReturnUrls
Provides a set of URLs to be called by LatitudePay as the payment plan changes status.
Inherited Members
Namespace: Yort.LatitudePay.InStore
Assembly: Yort.LatitudePay.InStore.dll
Syntax
public class LatitudePayReturnUrls
Remarks
LatitudePay with make HTTP GET requests to any callback provided, with query string arguments for details of the payment plan and status associated.
Also included should be a Signature query argument that can be used to verify the callback came from LatitudePay and is not malicious.
Properties
| Improve this Doc View SourceCallbackUrl
Gets or sets a URL to call approximately 10 seconds after the initial callback, as a backup notification in case the first is missed.
Declaration
[JsonProperty("callbackUrl")]
public Uri CallbackUrl { get; set; }
Property Value
Type | Description |
---|---|
Uri | The callback URL. |
FailUrl
Gets or sets the URL to call when the payment plan is declined or cancelled..
Declaration
[JsonProperty("failUrl")]
public Uri FailUrl { get; set; }
Property Value
Type | Description |
---|---|
Uri | The fail URL. |
SuccessUrl
Gets or sets the URL to call when the payment plan is approved.
Declaration
[JsonProperty("successUrl")]
public Uri SuccessUrl { get; set; }
Property Value
Type | Description |
---|---|
Uri | The success URL. |