- 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.
28 lines
588 B
Swift
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"
|
|
}
|
|
}
|
|
}
|