Type alias Resource

Resource: {
    attributes?: Maybe<Scalars["JSONObject"]>;
    createdAt: Scalars["DateTime"];
    id: Scalars["ID"];
    status?: Maybe<Status>;
    updatedAt?: Maybe<Scalars["DateTime"]>;
}

An interface representing properties common to all user-managed resources in the Niftory API.

Type declaration

  • Optional attributes?: Maybe<Scalars["JSONObject"]>

    A mapping of attributes for this object. These will be stored in the Niftory API but will not be added to the blockchain.

  • createdAt: Scalars["DateTime"]

    Creation date of this item

  • id: Scalars["ID"]

    A unique identifier for this object in the Niftory API.

  • Optional status?: Maybe<Status>

    The status of this resource. Can be used to track progress in designing and creating resources.

  • Optional updatedAt?: Maybe<Scalars["DateTime"]>

    Most recent updated date of this item, if any

Generated using TypeDoc