> ## Documentation Index
> Fetch the complete documentation index at: https://benzinga.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# نسب التشغيل

> operationRatios()

[\< رجوع](/ar/sdks/languages/java#operationratios)

<div id="overview">
  ## نظرة عامة
</div>

<div id="available-operations">
  ### العمليات المتاحة
</div>

* [get](#get) - جلب نسب التشغيل v2.1

<div id="get">
  ## جلب
</div>

جلب نسب العمليات لمجموعة من الرموز

<div id="example-usage">
  ### مثال على الاستخدام
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetOperationRatiosV21Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetOperationRatiosV21Response res = sdk.operationRatios().get()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.string().isPresent()) {
            // معالجة الاستجابة
        }
    }
}
```

<div id="parameters">
  ### المعلمات
</div>

| المعامل      | النوع               | مطلوب                | الوصف                         |
| ------------ | ------------------- | -------------------- | ----------------------------- |
| `symbols`    | *String*            | :heavy\_check\_mark: | قائمة من الرموز مفصولة بفواصل |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | تاريخ السريان (as of)         |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | الفترة                        |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | نوع التقرير                   |

<div id="response">
  ### الاستجابة
</div>

**[GetOperationRatiosV21Response](../../models/operations/GetOperationRatiosV21Response.md)**

<div id="errors">
  ### الأخطاء
</div>

| نوع الخطأ                  | رمز الحالة | نوع المحتوى |
| -------------------------- | ---------- | ----------- |
| models/errors/APIException | 4XX, 5XX   | */*         |
