Interface ResourceObject

interface ResourceObject {
    attributes?: {
        [key: string]: Attribute;
    };
    id: string;
    links?: LinksObject;
    meta?: Meta;
    relationships?: {
        [key: string]: Relationship;
    };
    type: string;
}

Properties

attributes?: {
    [key: string]: Attribute;
}

Type declaration

  • [key: string]: Attribute
id: string
links?: LinksObject
meta?: Meta
relationships?: {
    [key: string]: Relationship;
}

Type declaration

type: string