Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Comment ¶
type Comment struct {
Id string `json:"id"`
EntityType enum.EntityType `json:"entity_type"`
AddedBy string `json:"added_by"`
Notes string `json:"notes"`
CreatedAt int64 `json:"created_at"`
Type commentEnum.Type `json:"type"`
EntityId string `json:"entity_id"`
BusinessEntityId string `json:"business_entity_id"`
Object string `json:"object"`
}
type CreateRequestParams ¶
type CreateRequestParams struct {
EntityType enum.EntityType `json:"entity_type"`
EntityId string `json:"entity_id"`
Notes string `json:"notes"`
AddedBy string `json:"added_by,omitempty"`
}
type ListRequestParams ¶
type ListRequestParams struct {
Limit *int32 `json:"limit,omitempty"`
Offset string `json:"offset,omitempty"`
EntityType enum.EntityType `json:"entity_type,omitempty"`
EntityId string `json:"entity_id,omitempty"`
CreatedAt *filter.TimestampFilter `json:"created_at,omitempty"`
SortBy *filter.SortFilter `json:"sort_by,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.