lib/app/userrole.go

29 lines
647 B
Go
Raw Normal View History

2021-07-31 03:05:02 +00:00
package app
2021-08-01 00:08:25 +00:00
import "code.tnxs.net/vernonkeenan/lib/api/devops/devops_models"
2021-07-31 03:05:02 +00:00
// UserRoleActivityWrapper wraps the object with workflow params
type UserRoleActivityWrapper struct {
Obj devops_models.UserRole
APIKey string
SagaID string
SagaType string
}
// UserRole is a first class object type
type UserRole struct {
RoleID string
UserID string
Auth0RoleID string
RoleDescription string
RoleName string
AccountID string
CompanyName string
ContactID string
UserEmail string
UserFullName string
TelnexusAccount string
Username string
Auth0UserID string
}