1
0

ESLint: fix indentation

This commit is contained in:
Yury Bondarenko
2023-06-27 16:14:46 +02:00
parent b505cbc690
commit 0690a201dc
410 changed files with 3488 additions and 3488 deletions

View File

@@ -18,70 +18,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;