Values.GetNetworkResponseSourceRetrieves detailed information about a specific Wickr network, including its configuration, access level, and status.
type nonrec t = {networkId : NetworkId.t option;The unique identifier of the network.
*)networkName : GenericString.t option;The name of the network.
*)accessLevel : AccessLevel.t option;The access level of the network (STANDARD or PREMIUM), which determines available features and capabilities.
*)awsAccountId : GenericString.t option;The Amazon Web Services account ID that owns the network.
*)networkArn : GenericString.t option;The Amazon Resource Name (ARN) of the network.
*)standing : Integer.t option;The current standing or status of the network.
*)freeTrialExpiration : GenericString.t option;The expiration date and time for the network's free trial period, if applicable.
*)migrationState : Integer.t option;The SSO redirect URI migration state, managed by the SSO redirect migration wizard. Values: 0 (not started), 1 (in progress), or 2 (completed).
*)encryptionKeyArn : GenericString.t option;The ARN of the Amazon Web Services KMS customer managed key used for encrypting sensitive data in the network.
*)}type nonrec error = [ | `BadRequestError of BadRequestError.t| `ForbiddenError of ForbiddenError.t| `InternalServerError of InternalServerError.t| `RateLimitError of RateLimitError.t| `ResourceNotFoundError of ResourceNotFoundError.t| `ValidationError of ValidationError.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `BadRequestError of BadRequestError.t
| `ForbiddenError of ForbiddenError.t
| `InternalServerError of InternalServerError.t
| `RateLimitError of RateLimitError.t
| `ResourceNotFoundError of ResourceNotFoundError.t
| `UnauthorizedError of UnauthorizedError.t
| `Unknown_operation_error of string * string option
| `ValidationError of ValidationError.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `BadRequestError of BadRequestError.t
| `ForbiddenError of ForbiddenError.t
| `InternalServerError of InternalServerError.t
| `RateLimitError of RateLimitError.t
| `ResourceNotFoundError of ResourceNotFoundError.t
| `UnauthorizedError of UnauthorizedError.t
| `Unknown_operation_error of string * string option
| `ValidationError of ValidationError.t ]val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string | `Integer of Integer.t | `String of NetworkId.t ])
list ]