|
- package main
-
- type crmdEntityBase struct {
- AssignedUserID string `json:"assignedUserId,omitempty"`
- AssignedUserName string `json:"assignedUsername,omitempty"`
- CreatedAt string `json:"createdAt,omitempty"`
- CreatedByID string `json:"createdById,omitempty"`
- CreatedByName string `json:"createdByName,omitempty"`
- Deleted bool `json:"deleted,omitempty"`
- Description string `json:"description"`
- ID string `json:"id,omitempty"`
- ModifiedAt string `json:"modifiedAt,omitempty"`
- ModifiedByID string `json:"modifiedById,omitempty"`
- ModifiedByName string `json:"modifiedByName,omitempty"`
- Name string `json:"name,omitEmpty"`
- TeamsIDs []string `json:"teamsIds,omitempty"`
- TeamsNames map[string]string `json:"teamsNames,omitEmpty"`
- }
|