Show / Hide Table of Contents
    • Yort.LatitudePay.InStore
      • ILatitudePayClient
      • ILatitudePaySignatureGenerator
      • ILatitudePaySystemClock
      • LatitiudePayShippingLine
      • LatitudePayAddress
      • LatitudePayApiException
      • LatitudePayAuthToken
      • LatitudePayAvailability
      • LatitudePayCancelPurchaseRequest
      • LatitudePayCancelPurchaseResponse
      • LatitudePayClient
      • LatitudePayClientConfiguration
      • LatitudePayConfigurationRequest
      • LatitudePayConfigurationResponse
      • LatitudePayConstants
      • LatitudePayCreatePosPurchaseRequest
      • LatitudePayCreatePosPurchaseResponse
      • LatitudePayCreateRefundRequest
      • LatitudePayCreateRefundResponse
      • LatitudePayCurrencies
      • LatitudePayCustomer
      • LatitudePayEnvironment
      • LatitudePayHMACSHA256SignatureGenerator
      • LatitudePayMoney
      • LatitudePayProduct
      • LatitudePayPurchaseStatusRequest
      • LatitudePayPurchaseStatusResponse
      • LatitudePayReturnUrls
      • LatitudePaySystemClock

    Class LatitudePayReturnUrls

    Provides a set of URLs to be called by LatitudePay as the payment plan changes status.

    Inheritance
    Object
    LatitudePayReturnUrls
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    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 Source

    CallbackUrl

    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.

    | Improve this Doc View Source

    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.

    | Improve this Doc View Source

    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.

    • Improve this Doc
    • View Source
    Back to top Copyright (c) 2020 Troy Willmot