toggle menu
QuettaCode API
0.1.0-BETA
jvm
switch theme
search in API
QuettaCode API
/
com.quettacode.flow.crm.domain
/
ContactGroup
Contact
Group
@
Entity
class
ContactGroup
(
var
id
:
String
=
TsidCreator.getTsid().toString()
,
val
tenantId
:
String
,
var
name
:
String
,
var
description
:
String
?
=
null
,
var
tagId
:
String
?
=
null
,
val
contacts
:
MutableSet
<
Contact
>
=
mutableSetOf()
)
(
source
)
Members
Constructors
Contact
Group
Link copied to clipboard
constructor
(
id
:
String
=
TsidCreator.getTsid().toString()
,
tenantId
:
String
,
name
:
String
,
description
:
String
?
=
null
,
tagId
:
String
?
=
null
,
contacts
:
MutableSet
<
Contact
>
=
mutableSetOf()
)
Properties
contacts
Link copied to clipboard
val
contacts
:
MutableSet
<
Contact
>
created
At
Link copied to clipboard
val
createdAt
:
LocalDateTime
deleted
At
Link copied to clipboard
var
deletedAt
:
LocalDateTime
?
description
Link copied to clipboard
var
description
:
String
?
id
Link copied to clipboard
var
id
:
String
name
Link copied to clipboard
var
name
:
String
tag
Id
Link copied to clipboard
var
tagId
:
String
?
tenant
Id
Link copied to clipboard
val
tenantId
:
String
updated
At
Link copied to clipboard
var
updatedAt
:
LocalDateTime
?