PaylinkLimitOptionsResponse
public struct PaylinkLimitOptionsResponse : Codable
Options which are about limit for Paylink.
-
Specifies if the limit is exceeded or not.
Declaration
Swift
public let isLimitExceeded: Bool?
-
Maximum successfull payment count limit.
Declaration
Swift
public let count: Int?
-
Maximum amount value for collecting payment with the Paylink.
Declaration
Swift
public let amount: Decimal?
-
Expire date for the paylink in ISO 8601 format.
Declaration
Swift
public let date: Date?
-
Creates an instance from the specified parameters.
Declaration
Swift
public init(isLimitExceeded: Bool?, count: Int?, amount: Decimal?, date: Date?)
Parameters
isLimitExceeded
Specifies if the limit is exceeded or not.
count
Maximum successfull payment count limit.
amount
Maximum amount value for collecting payment with the Paylink.
date
Expire date for the paylink in ISO 8601 format.