mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACS-7600] fix Hold interface and documentation
This commit is contained in:
committed by
Darya Blavanovich
parent
6d6ef29c73
commit
8a91945d0a
@@ -4,9 +4,9 @@
|
||||
|
||||
```ts
|
||||
export interface Hold {
|
||||
id: string;
|
||||
name: string;
|
||||
id?: string;
|
||||
reason?: string;
|
||||
reason: string;
|
||||
description?: string;
|
||||
selected?: string;
|
||||
}
|
||||
@@ -14,9 +14,9 @@ export interface Hold {
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Default value | Description
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**id** | **string** | | Hold id
|
||||
**name** | **string** | | Hold name
|
||||
**reason** | **string** | | Hold reason
|
||||
**description** | **string** | | Additional information for a hold
|
||||
| Name | Type | Default value | Description |
|
||||
|-----------------|------------|---------------|-----------------------------------|
|
||||
| **id** | **string** | | Hold id |
|
||||
| **name** | **string** | | Hold name |
|
||||
| **reason** | **string** | | Hold reason |
|
||||
| **description** | **string** | | Additional information for a hold |
|
||||
|
@@ -12,8 +12,8 @@ export interface HoldBody {
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Default value | Description
|
||||
--------------- | ------------- | ------------- | --------------------------------------------
|
||||
**name** | **string** | | Hold name
|
||||
**reason** | **string** | | Hold reason
|
||||
**description** | **string** | | (Optional) Additional information for a hold
|
||||
| Name | Type | Default value | Description |
|
||||
|-----------------|------------|---------------|----------------------------------------------|
|
||||
| **name** | **string** | | Hold name |
|
||||
| **reason** | **string** | | Hold reason |
|
||||
| **description** | **string** | | (Optional) Additional information for a hold |
|
||||
|
@@ -1,6 +1,6 @@
|
||||
# HoldEntry
|
||||
|
||||
## Properties
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**entry** | [**Hold**](Hold.md) | | [default to null]
|
||||
| Name | Type | Description | Notes |
|
||||
|-----------|---------------------|-------------|-------------------|
|
||||
| **entry** | [**Hold**](Hold.md) | | [default to null] |
|
||||
|
@@ -1,8 +1,8 @@
|
||||
# HoldPaging
|
||||
|
||||
## Properties
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**list** | [**HoldPagingList**](HoldPagingList.md) | | [optional] [default to null]
|
||||
| Name | Type | Description | Notes |
|
||||
|----------|-----------------------------------------|-------------|------------------------------|
|
||||
| **list** | [**HoldPagingList**](HoldPagingList.md) | | [optional] [default to null] |
|
||||
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
# HoldPagingList
|
||||
|
||||
## Properties
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
|
||||
**entries** | [**HoldEntry[]**](HoldEntry.md) | | [optional] [default to null]
|
||||
| Name | Type | Description | Notes |
|
||||
|----------------|---------------------------------|-------------|------------------------------|
|
||||
| **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null] |
|
||||
| **entries** | [**HoldEntry[]**](HoldEntry.md) | | [optional] [default to null] |
|
||||
|
@@ -16,9 +16,9 @@
|
||||
*/
|
||||
|
||||
export interface Hold {
|
||||
id?: string;
|
||||
name?: string;
|
||||
reason?: string;
|
||||
id: string;
|
||||
name: string;
|
||||
reason: string;
|
||||
description?: string;
|
||||
selected?: boolean;
|
||||
}
|
||||
|
Reference in New Issue
Block a user