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

# ComplianceClient

> X API SDK의 compliance.client Python 모듈에 대한 참조입니다. X API v2의 compliance 엔드포인트를 호출하기 위한 클라이언트 클래스와 메서드입니다.

## ComplianceClient

<Badge color="blue">Class</Badge>

<Badge color="gray">기반 클래스: object</Badge>

규정 준수 작업을 위한 클라이언트

## 생성자

### `__init__`

#### 매개변수

<ParamField path="path.client" type="Client" />

### `create_jobs`

Create Compliance Job
Creates a new Compliance Job for the specified job type.
body: 요청 본문
:returns: 응답 데이터
:rtype: CreateJobsResponse

#### 매개변수

<ParamField path="body.body" type="CreateJobsRequest" />

### `get_jobs`

Get Compliance Jobs
Retrieves a list of Compliance Jobs filtered by job type and optional status.

#### 매개변수

<ParamField path="path.type" type="str">
  Type of Compliance Job to list.
</ParamField>

<ParamField path="path.status" type="str or None" default="None">
  Status of Compliance Job to list.
</ParamField>

<ParamField path="path.compliance_job_fields" type="List or None" default="None">
  A comma separated list of ComplianceJob fields to display.
</ParamField>

#### 반환값

`GetJobsResponse` - 응답 데이터

### `get_jobs_by_id`

Get Compliance Job by ID
Retrieves details of a specific Compliance Job by its ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the Compliance Job to retrieve.
</ParamField>

<ParamField path="path.compliance_job_fields" type="List or None" default="None">
  A comma separated list of ComplianceJob fields to display.
</ParamField>

#### 반환값

`GetJobsByIdResponse` - 응답 데이터
