HyperwalletStatusTransition
public struct HyperwalletStatusTransition : Codable
                Representation of the status transition.
The status transition describes a status change for an existing bank account, bank card, PayPal account, prepaid card, paper check or payment.
- 
                  
                  
The datetime the status changed in ISO 8601 format (YYYY-MM-DDThh:mm:ss). Note that the timezone used is UTC, therefore there is no time offset.
Declaration
Swift
public let createdOn: String? - 
                  
                  
The status before the transition.
Declaration
Swift
public let fromStatus: Status? - 
                  
                  
Comments regarding the status change.
Declaration
Swift
public let notes: String? - 
                  
                  
The unique, auto-generated status transition identifier.
Declaration
Swift
public let token: String? - 
                  
                  
The status after the transition.
Declaration
Swift
public let toStatus: Status? - 
                  
                  
The new status of the resource.
Declaration
Swift
public let transition: Status? - 
                  
                  
Representation of the status.
See moreDeclaration
Swift
public enum Status : String, Codable - 
                  
                  
A helper class to build the
See moreHyperwalletStatusTransitioninstance.Declaration
Swift
public class Builder 
            View on GitHub