A6BACB82FD689EB241DCA577/* Pods-IFS.release.xcconfig */={isa=PBXFileReference;includeInIndex=1;lastKnownFileType=text.xcconfig;name="Pods-IFS.release.xcconfig";path="Pods/Target Support Files/Pods-IFS/Pods-IFS.release.xcconfig";sourceTree="<group>";};
A6BACB82FD689EB241DCA577/* Pods-IFS.release.xcconfig */={isa=PBXFileReference;includeInIndex=1;lastKnownFileType=text.xcconfig;name="Pods-IFS.release.xcconfig";path="Pods/Target Support Files/Pods-IFS/Pods-IFS.release.xcconfig";sourceTree="<group>";};
F6BA9AE73F42B2E00206B76C/* Pods-IFS.debug.xcconfig */={isa=PBXFileReference;includeInIndex=1;lastKnownFileType=text.xcconfig;name="Pods-IFS.debug.xcconfig";path="Pods/Target Support Files/Pods-IFS/Pods-IFS.debug.xcconfig";sourceTree="<group>";};
F6BA9AE73F42B2E00206B76C/* Pods-IFS.debug.xcconfig */={isa=PBXFileReference;includeInIndex=1;lastKnownFileType=text.xcconfig;name="Pods-IFS.debug.xcconfig";path="Pods/Target Support Files/Pods-IFS/Pods-IFS.debug.xcconfig";sourceTree="<group>";};
* Instantiate the instance using the passed json values to set the properties values
*/
init(fromJsonjson:JSON!){
ifjson.isEmpty{
return
}
data=[String]()
letdataArray=json["data"].arrayValue
fordataJsonindataArray{
data.append(dataJson.stringValue)
}
message=json["message"].stringValue
success=json["success"].boolValue
}
/**
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property
* Instantiate the instance using the passed json values to set the properties values
*/
init(fromJsonjson:JSON!){
ifjson.isEmpty{
return
}
data=json["data"].stringValue
message=json["message"].stringValue
success=json["success"].boolValue
}
/**
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property
* Instantiate the instance using the passed json values to set the properties values
*/
init(fromJsonjson:JSON!){
ifjson.isEmpty{
return
}
letdataJson=json["data"]
if!dataJson.isEmpty{
data=RepairOrderData(fromJson:dataJson)
}
message=json["message"].stringValue
success=json["success"].boolValue
}
/**
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property
*/
functoDictionary()->[String:Any]
{
vardictionary=[String:Any]()
ifdata!=nil{
dictionary["data"]=data.toDictionary()
}
ifmessage!=nil{
dictionary["message"]=message
}
ifsuccess!=nil{
dictionary["success"]=success
}
returndictionary
}
}
classRepairOrderData:NSObject{
varpaging:Paging!
varrecords:[RepairOrderRecord]!
/**
* Instantiate the instance using the passed json values to set the properties values
*/
init(fromJsonjson:JSON!){
ifjson.isEmpty{
return
}
letpagingJson=json["paging"]
if!pagingJson.isEmpty{
paging=Paging(fromJson:pagingJson)
}
records=[RepairOrderRecord]()
letrecordsArray=json["records"].arrayValue
forrecordsJsoninrecordsArray{
letvalue=RepairOrderRecord(fromJson:recordsJson)
records.append(value)
}
}
/**
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property
* Returns all the available property values in the form of [String:Any] object where the key is the approperiate json key and the value is the value of the corresponding property
*/
functoDictionary()->[String:Any]
{
vardictionary=[String:Any]()
ifpage!=nil{
dictionary["page"]=page
}
ifpageCount!=nil{
dictionary["pageCount"]=pageCount
}
ifpageSize!=nil{
dictionary["pageSize"]=pageSize
}
ifrecordCount!=nil{
dictionary["recordCount"]=recordCount
}
returndictionary
}
}
}
classTodoData{
classTodoData{
varpaging:Paging!
varpaging:Paging!
varrecords:[Record]!
varrecords:[TodoRecord]!
/**
/**
* Instantiate the instance using the passed json values to set the properties values
* Instantiate the instance using the passed json values to set the properties values