@affinidi-tdk/credential-issuance-client
Version:
Affinidi TDK typescript client for Affinidi CREDENTIAL ISSUANCE
38 lines (31 loc) • 4.09 kB
Markdown
# UpdateIssuanceConfigInput
## Properties
| Name | Type | Description | Notes |
| --------------------------- | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------- |
| **name** | **string** | | [optional] [default to undefined] |
| **description** | **string** | | [optional] [default to undefined] |
| **issuerWalletId** | **string** | Issuer Wallet id | [optional] [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] |
| **issuerUri** | **string** | Issuer URI | [optional] [default to undefined] |
| **credentialSupported** | [**Array<CredentialSupportedObject>**](CredentialSupportedObject.md) | | [optional] [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 { UpdateIssuanceConfigInput } from '@affinidi-tdk/credential-issuance-client'
const instance: UpdateIssuanceConfigInput = {
name,
description,
issuerWalletId,
credentialOfferDuration,
format,
issuerUri,
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)