export interface RequestDataRepresents possible data to be given to an endpoint
optionalappendToFormData? : boolean 
Whether to append JSON data to form data instead of payload_json when sending files
optionalauth? : boolean = true
If this request needs the Authorization header
The authorization prefix to use for this request, useful if you use this with bearer tokens
The body to send to this request. If providing as BodyInit, set passThroughBody: true
optionalpassThroughBody? : boolean 
Whether to pass-through the body property directly to fetch(). This only applies when files is NOT present
optionalquery? : URLSearchParams 
Query string parameters to append to the called endpoint
optionalsignal? : AbortSignal | undefined 
The signal to abort the queue entry or the REST call, where applicable
optionalversioned? : boolean = true
If this request should be versioned