Documentation ¶
Index ¶
- type AddEmailTemplateRequest
- type AddWebhookRequest
- type AdminLoginInput
- type AdminSignupInput
- type AuthResponse
- type DeleteEmailTemplateRequest
- type DeleteUserInput
- type EmailTemplate
- type EmailTemplates
- type Env
- type Error
- type ForgotPasswordInput
- type ForgotPasswordResponse
- type GenerateJWTKeysInput
- type GenerateJWTKeysResponse
- type GetUserRequest
- type InviteMemberInput
- type InviteMembersResponse
- type ListWebhookLogRequest
- type LoginInput
- type MagicLinkLoginInput
- type Meta
- type MobileLoginInput
- type MobileSignUpInput
- type Mutation
- type OAuthRevokeInput
- type PaginatedInput
- type Pagination
- type PaginationInput
- type Query
- type ResendOTPRequest
- type ResendVerifyEmailInput
- type ResetPasswordInput
- type Response
- type SMSVerificationRequests
- type SessionQueryInput
- type SignUpInput
- type TestEndpointRequest
- type TestEndpointResponse
- type UpdateAccessInput
- type UpdateEmailTemplateRequest
- type UpdateEnvInput
- type UpdateProfileInput
- type UpdateUserInput
- type UpdateWebhookRequest
- type User
- type Users
- type ValidateJWTTokenInput
- type ValidateJWTTokenResponse
- type ValidateSessionInput
- type ValidateSessionResponse
- type VerificationRequest
- type VerificationRequests
- type VerifyEmailInput
- type VerifyOTPRequest
- type Webhook
- type WebhookLog
- type WebhookLogs
- type WebhookRequest
- type Webhooks
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddEmailTemplateRequest ¶
type AddWebhookRequest ¶
type AdminLoginInput ¶
type AdminLoginInput struct {
AdminSecret string `json:"admin_secret"`
}
type AdminSignupInput ¶
type AdminSignupInput struct {
AdminSecret string `json:"admin_secret"`
}
type AuthResponse ¶
type AuthResponse struct { Message string `json:"message"` ShouldShowEmailOtpScreen *bool `json:"should_show_email_otp_screen,omitempty"` ShouldShowMobileOtpScreen *bool `json:"should_show_mobile_otp_screen,omitempty"` ShouldShowTotpScreen *bool `json:"should_show_totp_screen,omitempty"` AccessToken *string `json:"access_token,omitempty"` IDToken *string `json:"id_token,omitempty"` RefreshToken *string `json:"refresh_token,omitempty"` ExpiresIn *int64 `json:"expires_in,omitempty"` User *User `json:"user,omitempty"` AuthenticatorScannerImage *string `json:"authenticator_scanner_image,omitempty"` AuthenticatorSecret *string `json:"authenticator_secret,omitempty"` AuthenticatorRecoveryCodes []*string `json:"authenticator_recovery_codes,omitempty"` }
type DeleteEmailTemplateRequest ¶
type DeleteEmailTemplateRequest struct {
ID string `json:"id"`
}
type DeleteUserInput ¶
type DeleteUserInput struct {
Email string `json:"email"`
}
type EmailTemplate ¶
type EmailTemplates ¶
type EmailTemplates struct { Pagination *Pagination `json:"pagination"` EmailTemplates []*EmailTemplate `json:"email_templates"` }
type Env ¶
type Env struct { AccessTokenExpiryTime *string `json:"ACCESS_TOKEN_EXPIRY_TIME,omitempty"` AdminSecret *string `json:"ADMIN_SECRET,omitempty"` DatabaseName *string `json:"DATABASE_NAME,omitempty"` DatabaseURL *string `json:"DATABASE_URL,omitempty"` DatabaseType *string `json:"DATABASE_TYPE,omitempty"` DatabaseUsername *string `json:"DATABASE_USERNAME,omitempty"` DatabasePassword *string `json:"DATABASE_PASSWORD,omitempty"` DatabaseHost *string `json:"DATABASE_HOST,omitempty"` DatabasePort *string `json:"DATABASE_PORT,omitempty"` ClientID string `json:"CLIENT_ID"` ClientSecret string `json:"CLIENT_SECRET"` CustomAccessTokenScript *string `json:"CUSTOM_ACCESS_TOKEN_SCRIPT,omitempty"` SMTPHost *string `json:"SMTP_HOST,omitempty"` SMTPPort *string `json:"SMTP_PORT,omitempty"` SMTPUsername *string `json:"SMTP_USERNAME,omitempty"` SMTPPassword *string `json:"SMTP_PASSWORD,omitempty"` SMTPLocalName *string `json:"SMTP_LOCAL_NAME,omitempty"` SenderEmail *string `json:"SENDER_EMAIL,omitempty"` SenderName *string `json:"SENDER_NAME,omitempty"` JwtType *string `json:"JWT_TYPE,omitempty"` JwtSecret *string `json:"JWT_SECRET,omitempty"` JwtPrivateKey *string `json:"JWT_PRIVATE_KEY,omitempty"` JwtPublicKey *string `json:"JWT_PUBLIC_KEY,omitempty"` AllowedOrigins []string `json:"ALLOWED_ORIGINS,omitempty"` AppURL *string `json:"APP_URL,omitempty"` RedisURL *string `json:"REDIS_URL,omitempty"` ResetPasswordURL *string `json:"RESET_PASSWORD_URL,omitempty"` DisableEmailVerification bool `json:"DISABLE_EMAIL_VERIFICATION"` DisableBasicAuthentication bool `json:"DISABLE_BASIC_AUTHENTICATION"` DisableMobileBasicAuthentication bool `json:"DISABLE_MOBILE_BASIC_AUTHENTICATION"` DisableMagicLinkLogin bool `json:"DISABLE_MAGIC_LINK_LOGIN"` DisableLoginPage bool `json:"DISABLE_LOGIN_PAGE"` DisableSignUp bool `json:"DISABLE_SIGN_UP"` DisableRedisForEnv bool `json:"DISABLE_REDIS_FOR_ENV"` DisableStrongPassword bool `json:"DISABLE_STRONG_PASSWORD"` DisableMultiFactorAuthentication bool `json:"DISABLE_MULTI_FACTOR_AUTHENTICATION"` EnforceMultiFactorAuthentication bool `json:"ENFORCE_MULTI_FACTOR_AUTHENTICATION"` Roles []string `json:"ROLES,omitempty"` ProtectedRoles []string `json:"PROTECTED_ROLES,omitempty"` DefaultRoles []string `json:"DEFAULT_ROLES,omitempty"` JwtRoleClaim *string `json:"JWT_ROLE_CLAIM,omitempty"` GoogleClientID *string `json:"GOOGLE_CLIENT_ID,omitempty"` GoogleClientSecret *string `json:"GOOGLE_CLIENT_SECRET,omitempty"` GithubClientID *string `json:"GITHUB_CLIENT_ID,omitempty"` GithubClientSecret *string `json:"GITHUB_CLIENT_SECRET,omitempty"` FacebookClientID *string `json:"FACEBOOK_CLIENT_ID,omitempty"` FacebookClientSecret *string `json:"FACEBOOK_CLIENT_SECRET,omitempty"` LinkedinClientID *string `json:"LINKEDIN_CLIENT_ID,omitempty"` LinkedinClientSecret *string `json:"LINKEDIN_CLIENT_SECRET,omitempty"` AppleClientID *string `json:"APPLE_CLIENT_ID,omitempty"` AppleClientSecret *string `json:"APPLE_CLIENT_SECRET,omitempty"` DiscordClientID *string `json:"DISCORD_CLIENT_ID,omitempty"` DiscordClientSecret *string `json:"DISCORD_CLIENT_SECRET,omitempty"` TwitterClientID *string `json:"TWITTER_CLIENT_ID,omitempty"` TwitterClientSecret *string `json:"TWITTER_CLIENT_SECRET,omitempty"` MicrosoftClientID *string `json:"MICROSOFT_CLIENT_ID,omitempty"` MicrosoftClientSecret *string `json:"MICROSOFT_CLIENT_SECRET,omitempty"` MicrosoftActiveDirectoryTenantID *string `json:"MICROSOFT_ACTIVE_DIRECTORY_TENANT_ID,omitempty"` TwitchClientID *string `json:"TWITCH_CLIENT_ID,omitempty"` TwitchClientSecret *string `json:"TWITCH_CLIENT_SECRET,omitempty"` RobloxClientID *string `json:"ROBLOX_CLIENT_ID,omitempty"` RobloxClientSecret *string `json:"ROBLOX_CLIENT_SECRET,omitempty"` OrganizationName *string `json:"ORGANIZATION_NAME,omitempty"` OrganizationLogo *string `json:"ORGANIZATION_LOGO,omitempty"` AppCookieSecure bool `json:"APP_COOKIE_SECURE"` AdminCookieSecure bool `json:"ADMIN_COOKIE_SECURE"` DefaultAuthorizeResponseType *string `json:"DEFAULT_AUTHORIZE_RESPONSE_TYPE,omitempty"` DefaultAuthorizeResponseMode *string `json:"DEFAULT_AUTHORIZE_RESPONSE_MODE,omitempty"` DisablePlayground bool `json:"DISABLE_PLAYGROUND"` DisableMailOtpLogin bool `json:"DISABLE_MAIL_OTP_LOGIN"` DisableTotpLogin bool `json:"DISABLE_TOTP_LOGIN"` }
type ForgotPasswordInput ¶
type ForgotPasswordResponse ¶
type GenerateJWTKeysInput ¶
type GenerateJWTKeysInput struct {
Type string `json:"type"`
}
type GenerateJWTKeysResponse ¶
type GetUserRequest ¶
type InviteMemberInput ¶
type InviteMembersResponse ¶
type ListWebhookLogRequest ¶
type ListWebhookLogRequest struct { Pagination *PaginationInput `json:"pagination,omitempty"` WebhookID *string `json:"webhook_id,omitempty"` }
type LoginInput ¶
type MagicLinkLoginInput ¶
type Meta ¶
type Meta struct { Version string `json:"version"` ClientID string `json:"client_id"` IsGoogleLoginEnabled bool `json:"is_google_login_enabled"` IsFacebookLoginEnabled bool `json:"is_facebook_login_enabled"` IsGithubLoginEnabled bool `json:"is_github_login_enabled"` IsLinkedinLoginEnabled bool `json:"is_linkedin_login_enabled"` IsAppleLoginEnabled bool `json:"is_apple_login_enabled"` IsDiscordLoginEnabled bool `json:"is_discord_login_enabled"` IsTwitterLoginEnabled bool `json:"is_twitter_login_enabled"` IsMicrosoftLoginEnabled bool `json:"is_microsoft_login_enabled"` IsTwitchLoginEnabled bool `json:"is_twitch_login_enabled"` IsRobloxLoginEnabled bool `json:"is_roblox_login_enabled"` IsEmailVerificationEnabled bool `json:"is_email_verification_enabled"` IsBasicAuthenticationEnabled bool `json:"is_basic_authentication_enabled"` IsMagicLinkLoginEnabled bool `json:"is_magic_link_login_enabled"` IsSignUpEnabled bool `json:"is_sign_up_enabled"` IsStrongPasswordEnabled bool `json:"is_strong_password_enabled"` IsMultiFactorAuthEnabled bool `json:"is_multi_factor_auth_enabled"` IsMobileBasicAuthenticationEnabled bool `json:"is_mobile_basic_authentication_enabled"` IsPhoneVerificationEnabled bool `json:"is_phone_verification_enabled"` }
type MobileLoginInput ¶
type MobileSignUpInput ¶
type MobileSignUpInput struct { Email *string `json:"email,omitempty"` GivenName *string `json:"given_name,omitempty"` FamilyName *string `json:"family_name,omitempty"` MiddleName *string `json:"middle_name,omitempty"` Nickname *string `json:"nickname,omitempty"` Gender *string `json:"gender,omitempty"` Birthdate *string `json:"birthdate,omitempty"` PhoneNumber string `json:"phone_number"` Picture *string `json:"picture,omitempty"` Password string `json:"password"` ConfirmPassword string `json:"confirm_password"` Roles []string `json:"roles,omitempty"` Scope []string `json:"scope,omitempty"` RedirectURI *string `json:"redirect_uri,omitempty"` IsMultiFactorAuthEnabled *bool `json:"is_multi_factor_auth_enabled,omitempty"` State *string `json:"state,omitempty"` AppData map[string]interface{} `json:"app_data,omitempty"` }
type OAuthRevokeInput ¶
type OAuthRevokeInput struct {
RefreshToken string `json:"refresh_token"`
}
type PaginatedInput ¶
type PaginatedInput struct {
Pagination *PaginationInput `json:"pagination,omitempty"`
}
type Pagination ¶
type PaginationInput ¶
type ResendOTPRequest ¶
type ResendVerifyEmailInput ¶
type ResetPasswordInput ¶
type SMSVerificationRequests ¶
type SessionQueryInput ¶
type SignUpInput ¶
type SignUpInput struct { Email *string `json:"email,omitempty"` GivenName *string `json:"given_name,omitempty"` FamilyName *string `json:"family_name,omitempty"` MiddleName *string `json:"middle_name,omitempty"` Nickname *string `json:"nickname,omitempty"` Gender *string `json:"gender,omitempty"` Birthdate *string `json:"birthdate,omitempty"` PhoneNumber *string `json:"phone_number,omitempty"` Picture *string `json:"picture,omitempty"` Password string `json:"password"` ConfirmPassword string `json:"confirm_password"` Roles []string `json:"roles,omitempty"` Scope []string `json:"scope,omitempty"` RedirectURI *string `json:"redirect_uri,omitempty"` IsMultiFactorAuthEnabled *bool `json:"is_multi_factor_auth_enabled,omitempty"` State *string `json:"state,omitempty"` AppData map[string]interface{} `json:"app_data,omitempty"` }
type TestEndpointRequest ¶
type TestEndpointResponse ¶
type UpdateAccessInput ¶
type UpdateAccessInput struct {
UserID string `json:"user_id"`
}
type UpdateEnvInput ¶
type UpdateEnvInput struct { AccessTokenExpiryTime *string `json:"ACCESS_TOKEN_EXPIRY_TIME,omitempty"` AdminSecret *string `json:"ADMIN_SECRET,omitempty"` CustomAccessTokenScript *string `json:"CUSTOM_ACCESS_TOKEN_SCRIPT,omitempty"` OldAdminSecret *string `json:"OLD_ADMIN_SECRET,omitempty"` SMTPHost *string `json:"SMTP_HOST,omitempty"` SMTPPort *string `json:"SMTP_PORT,omitempty"` SMTPUsername *string `json:"SMTP_USERNAME,omitempty"` SMTPPassword *string `json:"SMTP_PASSWORD,omitempty"` SMTPLocalName *string `json:"SMTP_LOCAL_NAME,omitempty"` SenderEmail *string `json:"SENDER_EMAIL,omitempty"` SenderName *string `json:"SENDER_NAME,omitempty"` JwtType *string `json:"JWT_TYPE,omitempty"` JwtSecret *string `json:"JWT_SECRET,omitempty"` JwtPrivateKey *string `json:"JWT_PRIVATE_KEY,omitempty"` JwtPublicKey *string `json:"JWT_PUBLIC_KEY,omitempty"` AllowedOrigins []string `json:"ALLOWED_ORIGINS,omitempty"` AppURL *string `json:"APP_URL,omitempty"` ResetPasswordURL *string `json:"RESET_PASSWORD_URL,omitempty"` AppCookieSecure *bool `json:"APP_COOKIE_SECURE,omitempty"` AdminCookieSecure *bool `json:"ADMIN_COOKIE_SECURE,omitempty"` DisableEmailVerification *bool `json:"DISABLE_EMAIL_VERIFICATION,omitempty"` DisableBasicAuthentication *bool `json:"DISABLE_BASIC_AUTHENTICATION,omitempty"` DisableMobileBasicAuthentication *bool `json:"DISABLE_MOBILE_BASIC_AUTHENTICATION,omitempty"` DisableMagicLinkLogin *bool `json:"DISABLE_MAGIC_LINK_LOGIN,omitempty"` DisableLoginPage *bool `json:"DISABLE_LOGIN_PAGE,omitempty"` DisableSignUp *bool `json:"DISABLE_SIGN_UP,omitempty"` DisableRedisForEnv *bool `json:"DISABLE_REDIS_FOR_ENV,omitempty"` DisableStrongPassword *bool `json:"DISABLE_STRONG_PASSWORD,omitempty"` DisableMultiFactorAuthentication *bool `json:"DISABLE_MULTI_FACTOR_AUTHENTICATION,omitempty"` EnforceMultiFactorAuthentication *bool `json:"ENFORCE_MULTI_FACTOR_AUTHENTICATION,omitempty"` Roles []string `json:"ROLES,omitempty"` ProtectedRoles []string `json:"PROTECTED_ROLES,omitempty"` DefaultRoles []string `json:"DEFAULT_ROLES,omitempty"` JwtRoleClaim *string `json:"JWT_ROLE_CLAIM,omitempty"` GoogleClientID *string `json:"GOOGLE_CLIENT_ID,omitempty"` GoogleClientSecret *string `json:"GOOGLE_CLIENT_SECRET,omitempty"` GithubClientID *string `json:"GITHUB_CLIENT_ID,omitempty"` GithubClientSecret *string `json:"GITHUB_CLIENT_SECRET,omitempty"` FacebookClientID *string `json:"FACEBOOK_CLIENT_ID,omitempty"` FacebookClientSecret *string `json:"FACEBOOK_CLIENT_SECRET,omitempty"` LinkedinClientID *string `json:"LINKEDIN_CLIENT_ID,omitempty"` LinkedinClientSecret *string `json:"LINKEDIN_CLIENT_SECRET,omitempty"` AppleClientID *string `json:"APPLE_CLIENT_ID,omitempty"` AppleClientSecret *string `json:"APPLE_CLIENT_SECRET,omitempty"` DiscordClientID *string `json:"DISCORD_CLIENT_ID,omitempty"` DiscordClientSecret *string `json:"DISCORD_CLIENT_SECRET,omitempty"` TwitterClientID *string `json:"TWITTER_CLIENT_ID,omitempty"` TwitterClientSecret *string `json:"TWITTER_CLIENT_SECRET,omitempty"` MicrosoftClientID *string `json:"MICROSOFT_CLIENT_ID,omitempty"` MicrosoftClientSecret *string `json:"MICROSOFT_CLIENT_SECRET,omitempty"` MicrosoftActiveDirectoryTenantID *string `json:"MICROSOFT_ACTIVE_DIRECTORY_TENANT_ID,omitempty"` TwitchClientID *string `json:"TWITCH_CLIENT_ID,omitempty"` TwitchClientSecret *string `json:"TWITCH_CLIENT_SECRET,omitempty"` RobloxClientID *string `json:"ROBLOX_CLIENT_ID,omitempty"` RobloxClientSecret *string `json:"ROBLOX_CLIENT_SECRET,omitempty"` OrganizationName *string `json:"ORGANIZATION_NAME,omitempty"` OrganizationLogo *string `json:"ORGANIZATION_LOGO,omitempty"` DefaultAuthorizeResponseType *string `json:"DEFAULT_AUTHORIZE_RESPONSE_TYPE,omitempty"` DefaultAuthorizeResponseMode *string `json:"DEFAULT_AUTHORIZE_RESPONSE_MODE,omitempty"` DisablePlayground *bool `json:"DISABLE_PLAYGROUND,omitempty"` DisableMailOtpLogin *bool `json:"DISABLE_MAIL_OTP_LOGIN,omitempty"` DisableTotpLogin *bool `json:"DISABLE_TOTP_LOGIN,omitempty"` }
type UpdateProfileInput ¶
type UpdateProfileInput struct { OldPassword *string `json:"old_password,omitempty"` NewPassword *string `json:"new_password,omitempty"` ConfirmNewPassword *string `json:"confirm_new_password,omitempty"` Email *string `json:"email,omitempty"` GivenName *string `json:"given_name,omitempty"` FamilyName *string `json:"family_name,omitempty"` MiddleName *string `json:"middle_name,omitempty"` Nickname *string `json:"nickname,omitempty"` Gender *string `json:"gender,omitempty"` Birthdate *string `json:"birthdate,omitempty"` PhoneNumber *string `json:"phone_number,omitempty"` Picture *string `json:"picture,omitempty"` IsMultiFactorAuthEnabled *bool `json:"is_multi_factor_auth_enabled,omitempty"` AppData map[string]interface{} `json:"app_data,omitempty"` }
type UpdateUserInput ¶
type UpdateUserInput struct { ID string `json:"id"` Email *string `json:"email,omitempty"` EmailVerified *bool `json:"email_verified,omitempty"` GivenName *string `json:"given_name,omitempty"` FamilyName *string `json:"family_name,omitempty"` MiddleName *string `json:"middle_name,omitempty"` Nickname *string `json:"nickname,omitempty"` Gender *string `json:"gender,omitempty"` Birthdate *string `json:"birthdate,omitempty"` PhoneNumber *string `json:"phone_number,omitempty"` PhoneNumberVerified *bool `json:"phone_number_verified,omitempty"` Picture *string `json:"picture,omitempty"` Roles []*string `json:"roles,omitempty"` IsMultiFactorAuthEnabled *bool `json:"is_multi_factor_auth_enabled,omitempty"` AppData map[string]interface{} `json:"app_data,omitempty"` }
type UpdateWebhookRequest ¶
type UpdateWebhookRequest struct { ID string `json:"id"` EventName *string `json:"event_name,omitempty"` EventDescription *string `json:"event_description,omitempty"` Endpoint *string `json:"endpoint,omitempty"` Enabled *bool `json:"enabled,omitempty"` Headers map[string]interface{} `json:"headers,omitempty"` }
type User ¶
type User struct { ID string `json:"id"` Email *string `json:"email,omitempty"` EmailVerified bool `json:"email_verified"` SignupMethods string `json:"signup_methods"` GivenName *string `json:"given_name,omitempty"` FamilyName *string `json:"family_name,omitempty"` MiddleName *string `json:"middle_name,omitempty"` Nickname *string `json:"nickname,omitempty"` PreferredUsername *string `json:"preferred_username,omitempty"` Gender *string `json:"gender,omitempty"` Birthdate *string `json:"birthdate,omitempty"` PhoneNumber *string `json:"phone_number,omitempty"` PhoneNumberVerified *bool `json:"phone_number_verified,omitempty"` Picture *string `json:"picture,omitempty"` Roles []string `json:"roles"` CreatedAt *int64 `json:"created_at,omitempty"` UpdatedAt *int64 `json:"updated_at,omitempty"` RevokedTimestamp *int64 `json:"revoked_timestamp,omitempty"` IsMultiFactorAuthEnabled *bool `json:"is_multi_factor_auth_enabled,omitempty"` AppData map[string]interface{} `json:"app_data,omitempty"` }
type Users ¶
type Users struct { Pagination *Pagination `json:"pagination"` Users []*User `json:"users"` }
type ValidateJWTTokenInput ¶
type ValidateSessionInput ¶
type ValidateSessionResponse ¶
type VerificationRequest ¶
type VerificationRequest struct { ID string `json:"id"` Identifier *string `json:"identifier,omitempty"` Token *string `json:"token,omitempty"` Email *string `json:"email,omitempty"` Expires *int64 `json:"expires,omitempty"` CreatedAt *int64 `json:"created_at,omitempty"` UpdatedAt *int64 `json:"updated_at,omitempty"` Nonce *string `json:"nonce,omitempty"` RedirectURI *string `json:"redirect_uri,omitempty"` }
type VerificationRequests ¶
type VerificationRequests struct { Pagination *Pagination `json:"pagination"` VerificationRequests []*VerificationRequest `json:"verification_requests"` }
type VerifyEmailInput ¶
type VerifyOTPRequest ¶
type Webhook ¶
type Webhook struct { ID string `json:"id"` EventName *string `json:"event_name,omitempty"` EventDescription *string `json:"event_description,omitempty"` Endpoint *string `json:"endpoint,omitempty"` Enabled *bool `json:"enabled,omitempty"` Headers map[string]interface{} `json:"headers,omitempty"` CreatedAt *int64 `json:"created_at,omitempty"` UpdatedAt *int64 `json:"updated_at,omitempty"` }
type WebhookLog ¶
type WebhookLog struct { ID string `json:"id"` HTTPStatus *int64 `json:"http_status,omitempty"` Response *string `json:"response,omitempty"` Request *string `json:"request,omitempty"` WebhookID *string `json:"webhook_id,omitempty"` CreatedAt *int64 `json:"created_at,omitempty"` UpdatedAt *int64 `json:"updated_at,omitempty"` }
type WebhookLogs ¶
type WebhookLogs struct { Pagination *Pagination `json:"pagination"` WebhookLogs []*WebhookLog `json:"webhook_logs"` }
type WebhookRequest ¶
type WebhookRequest struct {
ID string `json:"id"`
}
type Webhooks ¶
type Webhooks struct { Pagination *Pagination `json:"pagination"` Webhooks []*Webhook `json:"webhooks"` }
Click to show internal directories.
Click to hide internal directories.