You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
675 B

  1. //
  2. // AutoDebitWireframeInput.swift
  3. // GME Remit
  4. //
  5. // Created by Mac on 12/19/18.
  6. //Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. protocol AutoDebitWireframeInput: WireframeInput {
  9. /// Present AddAccount ViewController in front of these ViewController
  10. ///
  11. /// - Parameter model: KFTCModel
  12. func goAddAccountViewController(with model: KFTCModel?)
  13. /// Present Refresh Token
  14. ///
  15. /// - Parameters:
  16. /// - hearder: [String: String]]
  17. /// - url: String
  18. func goRefreshToken(header: [KftcHeader]?, url: String?)
  19. func openRegisterInboundAccount(with model: PenneyTestRequest, delegate: InboundPennyTestSubmitDelegate?)
  20. }