Files
Woka_Native_iOS/WOKA/Cart/Model/CheckEddDM.swift
Bilal adb2e2684c - solved issue of fullscreen for player. now transforming the view
- updated api for shop procuts, with lazy loading and proper structure
- added loading indicator when user navigates to bottom indicator will be shown
- Made shop product details view.
- Added carousel with page indicator
- added shadows to the images
- added selection option for address
- made address table dynamic
- added pincode_serviceability_check_edd for checking the delivery date of the selected address.
2024-07-26 23:21:09 +05:30

28 lines
588 B
Swift

//
// CheckEddDM.swift
// WOKA
//
// Created by Bilal on 26/07/2024.
//
import Foundation
// MARK: - CheckEddDM
struct CheckEddDM: Codable {
let result: ResultData?
// MARK: - ResultData
struct ResultData: Codable {
let fmPincode, fmMessage, lmPincode, lmMessage: String?
let edd: String?
enum CodingKeys: String, CodingKey {
case fmPincode = "fm_pincode"
case fmMessage = "fm_message"
case lmPincode = "lm_pincode"
case lmMessage = "lm_message"
case edd = "EDD"
}
}
}