> ## 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.

# عمليات الاندماج والاستحواذ

> ma()

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

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

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

* [get](#get) - جلب عمليات الاندماج والاستحواذ

<div id="get">
  ## 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.GetMaRequest;
import org.benzinga.BZClient.models.operations.GetMaResponse;

public class Application {

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

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

        GetMaRequest req = GetMaRequest.builder()
                .build();

        GetMaResponse res = sdk.ma().get()
                .request(req)
                .call();

        if (res.modelsAcquisitionJSON().isPresent()) {
            // معالجة الرد
        }
    }
}
```

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

| المعامل   | النوع                                                   | مطلوب                | الوصف                             |
| --------- | ------------------------------------------------------- | -------------------- | --------------------------------- |
| `request` | [GetMaRequest](../../models/operations/GetMaRequest.md) | :heavy\_check\_mark: | كائن الطلب المستخدم في هذا الطلب. |

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

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

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

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