Module Values.ChannelDataSource

A structure that contains some information about a channel in a private re:Post.

Sourcetype nonrec t = {
  1. spaceId : SpaceId.t option;
    (*

    The unique ID of the private re:Post.

    *)
  2. channelId : ChannelId.t option;
    (*

    The unique ID of the private re:Post channel.

    *)
  3. channelName : ChannelName.t option;
    (*

    The name for the channel. This must be unique per private re:Post.

    *)
  4. channelDescription : ChannelDescription.t option;
    (*

    A description for the channel. This is used only to help you identify this channel.

    *)
  5. createDateTime : SyntheticTimestamp_date_time.t option;
    (*

    The date when the channel was created.

    *)
  6. deleteDateTime : SyntheticTimestamp_date_time.t option;
    (*

    The date when the channel was deleted.

    *)
  7. channelStatus : ChannelStatus.t option;
    (*

    The status pf the channel.

    *)
  8. userCount : UserCount.t option;
    (*

    The number of users that are part of the channel.

    *)
  9. groupCount : GroupCount.t option;
    (*

    The number of groups that are part of the channel.

    *)
}
Sourceval make : ?spaceId:??? -> ?channelId:??? -> ?channelName:??? -> ?channelDescription:??? -> ?createDateTime:??? -> ?deleteDateTime:??? -> ?channelStatus:??? -> ?userCount:??? -> ?groupCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of UserCount.t | `String of SpaceId.t | `Timestamp of SyntheticTimestamp_date_time.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t