نظرة عامة
العمليات المتاحة
- get - جلب العناصر المحذوفة (v2)
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
removed()
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetRemovedResponse;
import org.benzinga.BZClient.models.operations.Type;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetRemovedResponse res = sdk.removed().get()
.page(700347L)
.pageSize(558834L)
.type(Type.OFFERINGS)
.updated(521235L)
.call();
if (res.modelsRmvdJSON().isPresent()) {
// معالجة الرد
}
}
}
| المعلمة | النوع | مطلوب | الوصف |
|---|---|---|---|
page | Optional<Long> | :heavy_minus_sign: | رقم الصفحة |
pageSize | Optional<Long> | :heavy_minus_sign: | عدد العناصر في الصفحة |
type | Optional<Type> | :heavy_minus_sign: | النوع |
updated | Optional<Long> | :heavy_minus_sign: | وقت آخر تحديث بتنسيق Unix |
| نوع الخطأ | رمز الحالة | نوع المحتوى |
|---|---|---|
| models/errors/APIException | 4XX, 5XX | / |
Was this page helpful?