Represents the authentication tree API callback schema.

interface Callback {
    _id?: number;
    input?: NameValue[];
    output: NameValue[];
    type: CallbackType;
}

Properties

Properties

_id?: number
input?: NameValue[]
output: NameValue[]