You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[GetRequest(RoutePrefix.ModelVersionRevision + "/globals/tables")]
public class GetLookupTablesRequest : IReturn<GetLookupTablesResponse>
{
public string[] GlobalIds { get; set; }
public string ProjectKey { get; set; }
public string ModelKey { get; set; }
public int Version { get; set; }
public int? Revision { get; set; }
}
public class GetLookupTablesResponse
{
public Dictionary<string, JArray> Result { get; set; }
}
}
But this works:
[GetRequest(RoutePrefix.ModelVersionRevision + "/globals/tables")]
public class GetLookupTablesRequest : IReturn<GetLookupTablesResponse>
{
public string ProjectKey { get; set; }
public string ModelKey { get; set; }
public int Version { get; set; }
public int? Revision { get; set; }
public string[] GlobalIds { get; set; }
}
public class GetLookupTablesResponse
{
public Dictionary<string, JArray> Result { get; set; }
}
}
The text was updated successfully, but these errors were encountered:
These gives an error:
But this works:
The text was updated successfully, but these errors were encountered: