1
0

Fix overindented decorated properties

This commit is contained in:
Yury Bondarenko
2024-04-18 13:14:04 +02:00
parent eec052fd77
commit f1c25ee344
120 changed files with 578 additions and 575 deletions

View File

@@ -22,70 +22,70 @@ export class ItemRequest implements CacheableObject {
*/
@excludeFromEquals
@autoserialize
type: ResourceType;
type: ResourceType;
/**
* opaque string which uniquely identifies this request
*/
@autoserialize
token: string;
token: string;
/**
* true if the request is for all bitstreams of the item.
*/
@autoserialize
allfiles: boolean;
allfiles: boolean;
/**
* email address of the person requesting the files.
*/
@autoserialize
requestEmail: string;
requestEmail: string;
/**
* Human-readable name of the person requesting the files.
*/
@autoserialize
requestName: string;
requestName: string;
/**
* arbitrary message provided by the person requesting the files.
*/
@autoserialize
requestMessage: string;
requestMessage: string;
/**
* date that the request was recorded.
*/
@autoserialize
requestDate: string;
requestDate: string;
/**
* true if the request has been granted.
*/
@autoserialize
acceptRequest: boolean;
acceptRequest: boolean;
/**
* date that the request was granted or denied.
*/
@autoserialize
decisionDate: string;
decisionDate: string;
/**
* date on which the request is considered expired.
*/
@autoserialize
expires: string;
expires: string;
/**
* UUID of the requested Item.
*/
@autoserialize
itemId: string;
itemId: string;
/**
* UUID of the requested bitstream.
*/
@autoserialize
bitstreamId: string;
bitstreamId: string;
/**
* The {@link HALLink}s for this ItemRequest
*/
@deserialize
_links: {
_links: {
self: HALLink;
item: HALLink;
bitstream: HALLink;