mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
more code layout changes
This commit is contained in:
parent
5164cb86ea
commit
ae8e8abfd9
@ -1,29 +0,0 @@
|
||||
/*
|
||||
* DataBag
|
||||
*
|
||||
* DataBag provides storage for decentralized identity based self-hosting apps. It is intended to support sharing of personal data and hosting group conversations.
|
||||
*
|
||||
* API version: 0.0.1
|
||||
* Contact: roland.osborne@gmail.com
|
||||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
||||
*/
|
||||
package databag
|
||||
|
||||
type Dialogue struct {
|
||||
|
||||
DialogueId string `json:"dialogueId"`
|
||||
|
||||
DialogueRevison int64 `json:"dialogueRevison,omitempty"`
|
||||
|
||||
Type_ string `json:"type"`
|
||||
|
||||
Data string `json:"data"`
|
||||
|
||||
Created int32 `json:"created"`
|
||||
|
||||
Active bool `json:"active"`
|
||||
|
||||
InsightRevision int64 `json:"insightRevision,omitempty"`
|
||||
|
||||
Insights []DialogueInsights `json:"insights"`
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
/*
|
||||
* DataBag
|
||||
*
|
||||
* DataBag provides storage for decentralized identity based self-hosting apps. It is intended to support sharing of personal data and hosting group conversations.
|
||||
*
|
||||
* API version: 0.0.1
|
||||
* Contact: roland.osborne@gmail.com
|
||||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
||||
*/
|
||||
package databag
|
||||
|
||||
type DialogueIdSubjectBody struct {
|
||||
|
||||
Type_ string `json:"type"`
|
||||
|
||||
Data string `json:"data"`
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
/*
|
||||
* DataBag
|
||||
*
|
||||
* DataBag provides storage for decentralized identity based self-hosting apps. It is intended to support sharing of personal data and hosting group conversations.
|
||||
*
|
||||
* API version: 0.0.1
|
||||
* Contact: roland.osborne@gmail.com
|
||||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
||||
*/
|
||||
package databag
|
||||
|
||||
type DialogueInsights struct {
|
||||
|
||||
CardId string `json:"cardId,omitempty"`
|
||||
|
||||
Status string `json:"status,omitempty"`
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
/*
|
||||
* DataBag
|
||||
*
|
||||
* DataBag provides storage for decentralized identity based self-hosting apps. It is intended to support sharing of personal data and hosting group conversations.
|
||||
*
|
||||
* API version: 0.0.1
|
||||
* Contact: roland.osborne@gmail.com
|
||||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
||||
*/
|
||||
package databag
|
||||
|
||||
type Disconnect struct {
|
||||
|
||||
RequestorId string `json:"requestorId"`
|
||||
|
||||
RequestedId string `json:"requestedId"`
|
||||
|
||||
Timestamp int32 `json:"timestamp"`
|
||||
}
|
@ -133,3 +133,18 @@ type DataMessage struct {
|
||||
Signature string `json:"signature"`
|
||||
}
|
||||
|
||||
type DialogueIdSubjectBody struct {
|
||||
Type_ string `json:"type"`
|
||||
Data string `json:"data"`
|
||||
}
|
||||
|
||||
type DialogueInsights struct {
|
||||
CardId string `json:"cardId,omitempty"`
|
||||
Status string `json:"status,omitempty"`
|
||||
}
|
||||
|
||||
type Disconnect struct {
|
||||
RequestorId string `json:"requestorId"`
|
||||
RequestedId string `json:"requestedId"`
|
||||
Timestamp int32 `json:"timestamp"`
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user