import { JsonApiLinksRelated } from './jsonApiLinksRelated'; import { JsonApiLinksSelf } from './jsonApiLinksSelf'; /** * Contains the links to use to access references of this resource. * @export * @interface CreatedVersionIncludedLinks */ export interface CreatedVersionIncludedLinks { /** * * @type {JsonApiLinksSelf} * @memberof CreatedVersionIncludedLinks */ 'self'?: JsonApiLinksSelf; /** * * @type {JsonApiLinksRelated} * @memberof CreatedVersionIncludedLinks */ 'related'?: JsonApiLinksRelated; }