Module Values.MembershipSummarySource

Contains summary information about a membership.

Sourcetype nonrec t = {
  1. membershipId : MembershipId.t option;
    (*

    The unique identifier of the membership.

    *)
  2. applicationId : ApplicationId.t option;
    (*

    The unique identifier of the application.

    *)
  3. agentSpaceId : AgentSpaceId.t option;
    (*

    The unique identifier of the agent space.

    *)
  4. memberType : MembershipType.t option;
    (*

    The type of member.

    *)
  5. config : MembershipConfig.t option;
    (*

    The configuration for the membership.

    *)
  6. metadata : MemberMetadata.t option;
    (*

    The metadata for the member.

    *)
  7. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the membership was created, in UTC format.

    *)
  8. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the membership was last updated, in UTC format.

    *)
  9. createdBy : String_.t option;
    (*

    The identifier of the entity that created the membership.

    *)
  10. updatedBy : String_.t option;
    (*

    The identifier of the entity that last updated the membership.

    *)
}
Sourceval make : ?membershipId:??? -> ?applicationId:??? -> ?agentSpaceId:??? -> ?memberType:??? -> ?config:??? -> ?metadata:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?createdBy:??? -> ?updatedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of MembershipId.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list | `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