Files
Woka_Native_iOS/WOKA/Cart/Model/AddressListDM.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
631 B
Swift

//
// AddressListDM.swift
// WOKA
//
// Created by MacBook Pro on 25/07/24.
//
import Foundation
// MARK: - AddressListDM
struct AddressListDM: Codable {
let id: Int?
let addressName, addressType, address, city: String?
let state, pincode, country, phoneNo: String?
let email: String?
var isDefault : Bool? = false
var eddDate : String? = nil
enum CodingKeys: String, CodingKey {
case id
case addressName = "address_name"
case addressType = "address_type"
case address, city, state, pincode, country
case phoneNo = "phone_no"
case email
}
}