onboardingHistory abstract method
- @GET.new(Api.partnerList)
Future<OnboardingHistory>
onboardingHistory(
{ - @Query.new("createdBy") String? createdBy,
- @Query.new("levelId") String? levelId,
- @Query.new("keyword") String? keyword,
- @Query.new("listAll") bool? listAll,
- @Query.new("approvalStatus") int? approvalStatus,
- @Query.new("status") int? status,
- @Query.new("fromDate") String? fromDate,
- @Query.new("toDate") String? toDate,
- @Query.new("locationId1") String? locationId1,
- @Query.new("locationId2") String? locationId2,
- @Query.new("locationId3") String? locationId3,
- @Query.new("locationId4") String? locationId4,
- @Query.new("dealerCategory") String? dealerType,
- @Query.new("dealerGrade") String? dealerGrade,
- @Query.new("parentId") String? parentId,
- @Query.new("page") int page = 1,
- @Query.new("size") int size = 10,
- @Query.new("sort") String sort = "createdDate",
- @Query.new("order") String order = "desc",
- @Header.new("X-UserId") String xUserId = "",
})
Implementation
@GET(Api.partnerList)
Future<OnboardingHistory> onboardingHistory({
// @Query("serviceId") int serviceId = 6,
@Query("createdBy") String? createdBy,
@Query("levelId") String? levelId,
@Query("keyword") String? keyword,
@Query("listAll") bool? listAll,
@Query("approvalStatus") int? approvalStatus,
@Query("status") int? status,
@Query("fromDate") String? fromDate,
@Query("toDate") String? toDate,
@Query("locationId1") String? locationId1,
@Query("locationId2") String? locationId2,
@Query("locationId3") String? locationId3,
@Query("locationId4") String? locationId4,
@Query("dealerCategory") String? dealerType,
@Query("dealerGrade") String? dealerGrade,
@Query("parentId") String? parentId,
@Query("page") int page = 1,
@Query("size") int size = 10,
@Query("sort") String sort = "createdDate",
@Query("order") String order = "desc",
@Header("X-UserId") String xUserId = "",
});