func()

in responses.go [65:72]


func (res *WebhookResponse) initializePayload() {
	if res.Payload == nil {
		res.Payload = new(structpb.Struct)
	}
	if res.Payload.Fields == nil {
		res.Payload.Fields = make(map[string]*structpb.Value)
	}
}