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.
 
 
 
 

30 lines
686 B

//
// LoyalityPointsModel.swift
// GME Remit
//
// Created by Armaan Shrestha on 12/12/2022.
// Copyright © 2022 Gobal Money Express Co. Ltd. All rights reserved.
//
import Foundation
import ObjectMapper
struct LoyalityPointsModel: Mappable {
var loyaltyMsgHead: String?
var loyaltyMsgBody: String?
var totalCount: String?
var tranCount: String?
var isFreeSC: String?
init?(map: Map) {}
mutating func mapping(map: Map) {
loyaltyMsgHead <- map["LoyaltyMsgHead"]
loyaltyMsgBody <- map["LoyaltyMsgBody"]
totalCount <- map["TotalCount"]
tranCount <- map["TranCount"]
isFreeSC <- map["IsFreeSC"]
}
}