Module Values.GetChannelOutputSource

Displays 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. channelRoles : ChannelRoles.t option;
    (*

    The channel roles associated to the users and groups of the channel.

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

    The status pf the channel.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?spaceId:??? -> ?channelId:??? -> ?channelName:??? -> ?channelDescription:??? -> ?createDateTime:??? -> ?deleteDateTime:??? -> ?channelRoles:??? -> ?channelStatus:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of AccessorId.t ] * [> `List of [> `Enum of string ] list ]) list | `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