Values.ChannelDataSourceA structure that contains some information about a channel in a private re:Post.
type nonrec t = {spaceId : SpaceId.t option;The unique ID of the private re:Post.
*)channelId : ChannelId.t option;The unique ID of the private re:Post channel.
*)channelName : ChannelName.t option;The name for the channel. This must be unique per private re:Post.
*)channelDescription : ChannelDescription.t option;A description for the channel. This is used only to help you identify this channel.
*)createDateTime : SyntheticTimestamp_date_time.t option;The date when the channel was created.
*)deleteDateTime : SyntheticTimestamp_date_time.t option;The date when the channel was deleted.
*)channelStatus : ChannelStatus.t option;The status pf the channel.
*)userCount : UserCount.t option;The number of users that are part of the channel.
*)groupCount : GroupCount.t option;The number of groups that are part of the channel.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of UserCount.t
| `String of SpaceId.t
| `Timestamp of SyntheticTimestamp_date_time.t ])
list ]