Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsserra committed Mar 8, 2018
0 parents commit 6b0f623
Show file tree
Hide file tree
Showing 419 changed files with 85,991 additions and 0 deletions.
503 changes: 503 additions & 0 deletions README.md

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions docs/AbstractItem.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

# AbstractItem

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Integer** | |
**documentKey** | **String** | |
**globalId** | **String** | |
**project** | **Integer** | ID of a project |
**itemType** | **Integer** | ID of an item type |
**createdDate** | [**OffsetDateTime**](OffsetDateTime.md) | |
**modifiedDate** | [**OffsetDateTime**](OffsetDateTime.md) | |
**lastActivityDate** | [**OffsetDateTime**](OffsetDateTime.md) | |
**createdBy** | **Integer** | ID of a user |
**modifiedBy** | **Integer** | ID of a user |
**resources** | [**Map<String, AllowedResource>**](AllowedResource.md) | A set of resources and allowed permissions |
**fields** | **Map<String, Object>** | A map of field names to field values e.g. {\"name\":\"Sample Item\", \"status\": 292, \"release\": 2, \"assigned\": 23} |



13 changes: 13 additions & 0 deletions docs/AbstractItemDataListWrapper.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

# AbstractItemDataListWrapper

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**data** | [**List<AbstractItem>**](AbstractItem.md) | | [optional]
**links** | [**Map<String, Link>**](Link.md) | | [optional]
**linked** | [**Map<String, Map<String, Object>>**](Map.md) | | [optional]
**meta** | [**MetaListWrapper**](MetaListWrapper.md) | | [optional]



13 changes: 13 additions & 0 deletions docs/AbstractItemDataWrapper.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

# AbstractItemDataWrapper

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**data** | [**AbstractItem**](AbstractItem.md) | | [optional]
**links** | [**Map<String, Link>**](Link.md) | | [optional]
**linked** | [**Map<String, Map<String, Object>>**](Map.md) | | [optional]
**meta** | [**MetaWrapper**](MetaWrapper.md) | | [optional]



13 changes: 13 additions & 0 deletions docs/AbstractRestResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

# AbstractRestResponse

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | **Integer** | | [optional]
**statusReasonPhrase** | **String** | | [optional]
**pageInfo** | [**PageInfo**](PageInfo.md) | | [optional]
**headers** | [**Map<String, List<String>>**](List.md) | | [optional]



13 changes: 13 additions & 0 deletions docs/AbstractVersionedItem.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

# AbstractVersionedItem

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Integer** | | [optional]
**currentVersion** | **Integer** | Currently active version of the versioned item. If no version is active, currentVersion will not be returned. | [optional]
**version** | **Integer** | | [optional]
**type** | **String** | | [optional]



13 changes: 13 additions & 0 deletions docs/AbstractVersionedItemDataWrapper.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

# AbstractVersionedItemDataWrapper

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**data** | [**AbstractVersionedItem**](AbstractVersionedItem.md) | | [optional]
**links** | [**Map<String, Link>**](Link.md) | | [optional]
**linked** | [**Map<String, Map<String, Object>>**](Map.md) | | [optional]
**meta** | [**MetaWrapper**](MetaWrapper.md) | | [optional]



Loading

0 comments on commit 6b0f623

Please sign in to comment.