VendorOAuthClientResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | Long | Unique identifier for the OAuth client. | [default to null] |
| client_id | String | The client ID used for OAuth authentication. | [default to null] |
| client_name | String | Display name of the client application. | [default to null] |
| redirect_uris | List | List of allowed redirect URIs. | [default to null] |
| grant_types | List | List of allowed grant types (e.g., “authorization_code”, “client_credentials”). | [default to null] |
| response_types | List | List of response types (e.g., “code”, “token”). | [default to null] |
| logo_uri | String | Optional URI to the client’s logo. | [optional] [default to null] |
| client_uri | String | Optional URI to the client’s website. | [optional] [default to null] |
| policy_uri | String | Optional URI to the client’s privacy policy. | [optional] [default to null] |
| tos_uri | String | Optional URI to the client’s terms of service. | [optional] [default to null] |
| scope | String | The scope of access granted to this client. | [default to null] |
| revoked | Boolean | Whether the client has been revoked. | [default to null] |
| whitelisted_ips | List | Optional list of whitelisted IP addresses. | [optional] [default to null] |
| created_at | Date | Timestamp when the client was created. | [default to null] |
| updated_at | Date | Timestamp when the client was last updated. | [default to null] |