mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-14 21:43:04 +00:00
25 lines
683 B
TypeScript
25 lines
683 B
TypeScript
import { autoserialize, deserialize } from 'cerialize';
|
|
import { BITSTREAM_FORMAT } from '../shared/bitstream-format.resource-type';
|
|
import { HALLink } from '../shared/hal-link.model';
|
|
import { PageInfo } from '../shared/page-info.model';
|
|
import { BitstreamFormat } from '../shared/bitstream-format.model';
|
|
import { link } from '../cache/builders/build-decorators';
|
|
|
|
export class RegistryBitstreamformatsResponse {
|
|
@autoserialize
|
|
page: PageInfo;
|
|
|
|
/**
|
|
* The {@link HALLink}s for this RegistryBitstreamformatsResponse
|
|
*/
|
|
@deserialize
|
|
_links: {
|
|
self: HALLink;
|
|
bitstreamformats: HALLink;
|
|
};
|
|
|
|
@link(BITSTREAM_FORMAT)
|
|
bitstreamformats?: BitstreamFormat[];
|
|
|
|
}
|