// // AgreePDFDocument.swift // GME Remit // // Created by InKwon James Kim on 2020/01/07. // Copyright © 2020 Gobal Money Express Co. Ltd. All rights reserved. // import ObjectMapper struct AgreePDFDocument: Mappable { var id: String? var name: String? var url: String? init?(map: Map) {} mutating func mapping(map: Map) { id <- map["pdfNo"] name <- map["pdfName"] url <- map["pdfPath"] } }