Product Help

Requests Package Types

Data

type Data struct { keys []string data map[string]interface{} }

Data contains a list of keys that map to values in a map.

Operation

type Operation struct { Method string `json:"method"` BulkId uuid.UUID `json:"bulkId"` Path string `json:"path"` Data *data.Data `json:"data"` }

Operation represents an operation that will be used for requests.

Request

type Request struct { Schemas []string `json:"schemas"` Operations []operation.Operation `json:"operations"` FailOnErrors string `json:"FailOnErrors"` }

Request holds Operations and Schemas for Microsoft API requests.

Last modified: 28 January 2025