I have a json object which contains array of array of object. I need to parse it using JSONModel.
Eg of json:
{
"object": [
[
{
"a": 1,
"b": 2
},
{
"c": 1,
"d": 4
}
],
[
{
"a": 3,
"b": 6
},
{
"e": 2,
"f": 3
}
]
]
}
How should I declare it in my JSONModel? Declaring like this is giving me as NSArray of NSDictionary.
@interface SomeClass : JSONModel
@property (nonatomic, retain) NSArray<NSArray<AphabetJsonModelClass> *> *object;
@end