-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Publish fraudPreventionV2 [3.0.0] SDK (#262)
- Loading branch information
1 parent
f9bf6e4
commit a10e490
Showing
175 changed files
with
3,185 additions
and
5,473 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,30 @@ | ||
[index](index.md) / [expediagroup.sdk.fraudpreventionv2.model](expediagroup.sdk.fraudpreventionv2.model.md) / [AccountRole](AccountRole.md) | ||
[index](index.md) / | ||
[expediagroup.sdk.fraudpreventionv2.model](expediagroup.sdk.fraudpreventionv2.model.md) | ||
/ [AccountRole](AccountRole.md) | ||
|
||
# class `expediagroup.sdk.fraudpreventionv2.model.AccountRole` | ||
``` | ||
AccountRole( | ||
) | ||
``` | ||
|
||
pydantic model AccountRole: Identifies the account role and associated permissions of a user''s account. Possible values are: | ||
- `USER`: Basic account with no special privileges. | ||
- `MANAGER`: Account with additional privileges, such as the ability to make bookings for others. | ||
- `ADMIN`: Account with higher privileges than a manager, including the ability to grant manager access to other users. | ||
```python | ||
AccountRole() | ||
``` | ||
|
||
pydantic model AccountRole: Identifies the account role and associated | ||
permissions of a user’’s account. Possible values are: | ||
|
||
- `USER`: Basic account with no special privileges. | ||
- `MANAGER`: Account with additional privileges, such as the ability to | ||
make bookings for others. | ||
- `ADMIN`: Account with higher privileges than a manager, including the | ||
ability to grant manager access to other users. | ||
|
||
## Attributes | ||
|
||
|
||
|
||
|
||
|
||
|
||
| Name | Type | Required | Description | | ||
|---------|------|----------|-------------| | ||
| ADMIN | Any | True | ... | | ||
| MANAGER | Any | True | ... | | ||
| USER | Any | True | ... | | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
| Name | Type | Required | Description | | ||
| ------- | ---- | -------- | ----------- | | ||
| ADMIN | Any | True | … | | ||
| MANAGER | Any | True | … | | ||
| USER | Any | True | … | | ||
|
||
# Inheritance | ||
object > Enum > AccountRole | ||
|
||
object > Enum > AccountRole |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,24 @@ | ||
[index](index.md) / [expediagroup.sdk.fraudpreventionv2.model](expediagroup.sdk.fraudpreventionv2.model.md) / [AccountScreenRequest](AccountScreenRequest.md) | ||
[index](index.md) / | ||
[expediagroup.sdk.fraudpreventionv2.model](expediagroup.sdk.fraudpreventionv2.model.md) | ||
/ [AccountScreenRequest](AccountScreenRequest.md) | ||
|
||
# class `expediagroup.sdk.fraudpreventionv2.model.AccountScreenRequest` | ||
``` | ||
|
||
```python | ||
AccountScreenRequest( | ||
transaction: AccountTransaction, | ||
) | ||
``` | ||
|
||
pydantic model AccountScreenRequest: Information for account screening by Expedia's Fraud Prevention Service. | ||
|
||
|
||
pydantic model AccountScreenRequest: Information for account screening | ||
by Expedia’s Fraud Prevention Service. | ||
|
||
## Attributes | ||
|
||
|
||
|
||
|
||
| Name | Type | Required | Description | | ||
|-------------|---------------------------------------------|----------|-------------| | ||
| transaction | [AccountTransaction](AccountTransaction.md) | True | ... | | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
| Name | Type | Required | Description | | ||
| ----------- | ------------------------------------------- | -------- | ----------- | | ||
| transaction | [AccountTransaction](AccountTransaction.md) | True | … | | ||
|
||
# Inheritance | ||
object > BaseModel > AccountScreenRequest | ||
|
||
object > BaseModel > AccountScreenRequest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,26 @@ | ||
[index](index.md) / [expediagroup.sdk.fraudpreventionv2.model](expediagroup.sdk.fraudpreventionv2.model.md) / [AccountScreenResponse](AccountScreenResponse.md) | ||
[index](index.md) / | ||
[expediagroup.sdk.fraudpreventionv2.model](expediagroup.sdk.fraudpreventionv2.model.md) | ||
/ [AccountScreenResponse](AccountScreenResponse.md) | ||
|
||
# class `expediagroup.sdk.fraudpreventionv2.model.AccountScreenResponse` | ||
``` | ||
|
||
```python | ||
AccountScreenResponse( | ||
risk_id: Optional[constr(max_length=200)], | ||
decision: Optional[AccountTakeoverFraudDecision], | ||
) | ||
``` | ||
|
||
pydantic model AccountScreenResponse: Response for an account transaction provided by Expedia's Fraud Prevention Service. | ||
|
||
|
||
pydantic model AccountScreenResponse: Response for an account | ||
transaction provided by Expedia’s Fraud Prevention Service. | ||
|
||
## Attributes | ||
|
||
|
||
|
||
|
||
|
||
| Name | Type | Required | Description | | ||
|----------|---------------------------------------------------------------------------|----------|--------------------------------------------------------------------------------------| | ||
| decision | Optional[[AccountTakeoverFraudDecision](AccountTakeoverFraudDecision.md)] | False | ... | | ||
| risk_id | Optional[constr(max_length=200)] | False | Unique identifier assigned to the transaction by Expedia's Fraud Prevention Service. | | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
| Name | Type | Required | Description | | ||
| -------- | --------------------------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------ | | ||
| decision | Optional\[[AccountTakeoverFraudDecision](AccountTakeoverFraudDecision.md)\] | False | … | | ||
| risk_id | Optional\[constr(max_length=200)\] | False | Unique identifier assigned to the transaction by Expedia’s Fraud Prevention Service. | | ||
|
||
# Inheritance | ||
object > BaseModel > AccountScreenResponse | ||
|
||
object > BaseModel > AccountScreenResponse |
36 changes: 14 additions & 22 deletions
36
release/fraudPreventionV2/docs/AccountTakeoverBadRequestError.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,25 @@ | ||
[index](index.md) / [expediagroup.sdk.fraudpreventionv2.model](expediagroup.sdk.fraudpreventionv2.model.md) / [AccountTakeoverBadRequestError](AccountTakeoverBadRequestError.md) | ||
[index](index.md) / | ||
[expediagroup.sdk.fraudpreventionv2.model](expediagroup.sdk.fraudpreventionv2.model.md) | ||
/ [AccountTakeoverBadRequestError](AccountTakeoverBadRequestError.md) | ||
|
||
# class `expediagroup.sdk.fraudpreventionv2.model.AccountTakeoverBadRequestError` | ||
``` | ||
|
||
```python | ||
AccountTakeoverBadRequestError( | ||
causes: Optional[list[Cause1]], | ||
) | ||
``` | ||
|
||
pydantic model AccountTakeoverBadRequestError: Indicates that a bad request occurred. Typically it is an invalid parameter. | ||
|
||
|
||
pydantic model AccountTakeoverBadRequestError: Indicates that a bad | ||
request occurred. Typically it is an invalid parameter. | ||
|
||
## Attributes | ||
|
||
|
||
|
||
|
||
| Name | Type | Required | Description | | ||
|--------|-------------------------------------|----------|-------------| | ||
| causes | Optional[list[[Cause1](Cause1.md)]] | False | ... | | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
| Name | Type | Required | Description | | ||
| ------ | --------------------------------------- | -------- | ----------- | | ||
| causes | Optional\[list\[[Cause1](Cause1.md)\]\] | False | … | | ||
|
||
# Inheritance | ||
object > [AccountTakeoverError](AccountTakeoverError.md) > AccountTakeoverBadRequestError | ||
|
||
object > [AccountTakeoverError](AccountTakeoverError.md) > | ||
AccountTakeoverBadRequestError |
39 changes: 13 additions & 26 deletions
39
...fraudPreventionV2/docs/AccountTakeoverBadRequestErrorDeserializationContract.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,24 @@ | ||
[index](index.md) / [expediagroup.sdk.fraudpreventionv2.model](expediagroup.sdk.fraudpreventionv2.model.md) / [AccountTakeoverBadRequestErrorDeserializationContract](AccountTakeoverBadRequestErrorDeserializationContract.md) | ||
[index](index.md) / | ||
[expediagroup.sdk.fraudpreventionv2.model](expediagroup.sdk.fraudpreventionv2.model.md) | ||
/ | ||
[AccountTakeoverBadRequestErrorDeserializationContract](AccountTakeoverBadRequestErrorDeserializationContract.md) | ||
|
||
# class `expediagroup.sdk.fraudpreventionv2.model.AccountTakeoverBadRequestErrorDeserializationContract` | ||
``` | ||
|
||
```python | ||
AccountTakeoverBadRequestErrorDeserializationContract( | ||
exception: type, | ||
model: type, | ||
) | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
## Attributes | ||
|
||
|
||
|
||
|
||
|
||
| Name | Type | Required | Description | | ||
|-----------|------|----------|-------------| | ||
| exception | type | True | ... | | ||
| model | type | True | ... | | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
| Name | Type | Required | Description | | ||
| --------- | ---- | -------- | ----------- | | ||
| exception | type | True | … | | ||
| model | type | True | … | | ||
|
||
# Inheritance | ||
object > AccountTakeoverBadRequestErrorDeserializationContract | ||
|
||
object > AccountTakeoverBadRequestErrorDeserializationContract |
Oops, something went wrong.