Interface IDependencyInformationEntityAttribute

An attribute inside a IDependencyInformationEntity object.

interface IDependencyInformationEntityAttribute {
    category?: Nilable<string>;
    hasLocalEffects?: Nilable<boolean>;
    hasRemoteEffects?: Nilable<boolean>;
    key: ReferenceValue;
    references?: Nilable<string[]>;
    remarks?: Nilable<string>;
    type?: Nilable<string>;
}

Hierarchy

Properties

category?: Nilable<string>

An optional value that categories this attribute. Value should be handled as slug value, case-insensitive.

hasLocalEffects?: Nilable<boolean>

If there is an action on app's side, it will have effects in this application in general.

Default

false

hasRemoteEffects?: Nilable<boolean>

If there is an action in this application, it will have effects on app's side in general.

Default

true

key: ReferenceValue

The unique key. Value should be handled as slug value, case-insensitive.

references?: Nilable<string[]>

An optional list of references. Should be handled as URIs.

remarks?: Nilable<string>

Optional notes/remarks. Should be handled as Markdown, if possible.

type?: Nilable<string>

An optional value for classification. Value should be handled as slug value, case-insensitive.

Generated using TypeDoc