Hi,
I have a C# class called students.cs with the below property:
[DataMember(Name = "dept_no")]
public byte DeptNo { get; set; }
The problem is that I am getting DeptNo instead of dept_no in the API response.If I disable the pagesize its working fine else not. Can you help me with this issue?
Thanks.