listUssPath

@GET(value = "zosmf/restfiles/fs")
abstract fun listUssPath(    @Header(value = "Authorization") authorizationToken: String,     @Header(value = "X-IBM-Max-Items") xIBMMaxItems: Int = 0,     @Header(value = "X-IBM-Lstat") xIBMLstat: Boolean = false,     @Query(value = "path") path: String,     @Query(value = "depth") depth: Int = 1,     @Query(value = "filesys") fileSystem: String? = null,     @Query(value = "symlinks") followSymlinks: SymlinkMode? = null,     @Query(value = "group") group: String? = null,     @Query(value = "mtime") mtime: String? = null,     @Query(value = "name") name: String? = null,     @Query(value = "size") size: String? = null,     @Query(value = "perm") perm: String? = null,     @Query(value = "type") type: String? = null,     @Query(value = "user") user: String? = null): Call<UssFilesList>