iOS SDK Samples - Blueprint Operations
let getBlueprintDetails = tryblueprintDetails.getDictionary(key: "GetBlueprint")
// record is the object of newRecord()
$record.getBlueprintDetails() { result in
switch result
{
case .success(let blueprint, let response) :
print ("ResponseJSON : \( response.responseJSON )")
case .failure(let error) :
print ( "Throws exception : \(error)" )
}
}