// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. package atproto // schema: com.atproto.server.createInviteCodes import ( "context" "github.com/bluesky-social/indigo/lex/util" ) // ServerCreateInviteCodes_AccountCodes is a "accountCodes" in the com.atproto.server.createInviteCodes schema. type ServerCreateInviteCodes_AccountCodes struct { Account string `json:"account" cborgen:"account"` Codes []string `json:"codes" cborgen:"codes"` } // ServerCreateInviteCodes_Input is the input argument to a com.atproto.server.createInviteCodes call. type ServerCreateInviteCodes_Input struct { CodeCount int64 `json:"codeCount" cborgen:"codeCount"` ForAccounts []string `json:"forAccounts,omitempty" cborgen:"forAccounts,omitempty"` UseCount int64 `json:"useCount" cborgen:"useCount"` } // ServerCreateInviteCodes_Output is the output of a com.atproto.server.createInviteCodes call. type ServerCreateInviteCodes_Output struct { Codes []*ServerCreateInviteCodes_AccountCodes `json:"codes" cborgen:"codes"` } // ServerCreateInviteCodes calls the XRPC method "com.atproto.server.createInviteCodes". func ServerCreateInviteCodes(ctx context.Context, c util.LexClient, input *ServerCreateInviteCodes_Input) (*ServerCreateInviteCodes_Output, error) { var out ServerCreateInviteCodes_Output if err := c.LexDo(ctx, util.Procedure, "application/json", "com.atproto.server.createInviteCodes", nil, input, &out); err != nil { return nil, err } return &out, nil }