15 lines
297 B
Go
15 lines
297 B
Go
package dto
|
|
|
|
type GetDocumentSettingsRequest struct {
|
|
ExternalID string `json:"external_id"`
|
|
}
|
|
|
|
type DocumentSettingsResponse struct {
|
|
IsPublic bool `json:"is_public"`
|
|
}
|
|
|
|
type UpdateDocumentSettingsRequest struct {
|
|
ExternalID string `json:"external_id"`
|
|
IsPublic bool `json:"is_public"`
|
|
}
|