public struct CurrentStepDoneDelayDeserializer: Decodable {
    private let currentStepDoneDelay: Double?
    
    private enum CodingKeys: String, CodingKey {
        case currentStepDoneDelay
    }
    
    public init(from decoder: Decoder) throws {
        let container = try decoder.container(keyedBy: CodingKeys.self)
        
        currentStepDoneDelay = try container.decodeIfPresent(Double.self, forKey: .currentStepDoneDelay)
    }
    
    var getCurrentStepDoneDelay: Double? {
        currentStepDoneDelay
    }
}
