ts-mailcow-api
    Preparing search index...

    Interface IdentityProviderEditRequest

    Wire-level body of the edit/identity-provider request. The wrapper builds this for you from IdentityProviderAttributes, but it is exported in case callers need to construct it manually.

    items is always ['identity-provider'] -- the array type is used (rather than a fixed tuple) so callers do not have to use a const assertion to satisfy this interface.

    interface IdentityProviderEditRequest {
        attr: IdentityProviderAttributes;
        items: "identity-provider"[];
    }
    Index

    Properties

    Properties

    items: "identity-provider"[]