@affinidi-tdk/credential-issuance-client
Version:
Affinidi TDK typescript client for Affinidi CREDENTIAL ISSUANCE
36 lines (29 loc) • 3.78 kB
Markdown
# CreateIssuanceConfigInput
## Properties
| Name | Type | Description | Notes |
| --------------------------- | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------- |
| **name** | **string** | | [optional] [default to undefined] |
| **description** | **string** | | [optional] [default to undefined] |
| **issuerWalletId** | **string** | Issuer Wallet id | [default to undefined] |
| **credentialOfferDuration** | **number** | credential offer duration in second | [optional] [default to undefined] |
| **format** | **string** | String identifying the format of this Credential, i.e., ldp_vc. Depending on the format value, the object contains further elements defining the type | [optional] [default to undefined] |
| **credentialSupported** | [**Array<CredentialSupportedObject>**](CredentialSupportedObject.md) | | [default to undefined] |
| **issuerMetadata** | **{ [key: string]: any; }** | Issuer public information wallet may want to show to user during consent confirmation | [optional] [default to undefined] |
| **returnUris** | **Array<string>** | List of allowed URIs to be returned to after issuance | [optional] [default to undefined] |
| **webhook** | [**CisConfigurationWebhookSetting**](CisConfigurationWebhookSetting.md) | | [optional] [default to undefined] |
## Example
```typescript
import { CreateIssuanceConfigInput } from '@affinidi-tdk/credential-issuance-client'
const instance: CreateIssuanceConfigInput = {
name,
description,
issuerWalletId,
credentialOfferDuration,
format,
credentialSupported,
issuerMetadata,
returnUris,
webhook,
}
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)