Documentation
¶
Overview ¶
Package datumclient contains the client to interact with the datum server
Index ¶
- Constants
- Variables
- func GetSessionFromCookieJar(c *Client) (sessionID string, err error)
- func Login(c *Client, ctx context.Context, login handlers.LoginRequest) (*oauth2.Token, error)
- func OauthLogin(u string, isDev bool) (*oauth2.Token, string, error)
- func OrgInvite(c *Client, ctx context.Context, r handlers.Invite, accessToken string) (*handlers.InviteReply, *oauth2.Token, error)
- func Refresh(c *Client, ctx context.Context, r handlers.RefreshRequest) (*oauth2.Token, error)
- func Register(c *Client, ctx context.Context, r handlers.RegisterRequest) (*handlers.RegisterReply, error)
- func Reset(c *Client, ctx context.Context, r handlers.ResetPasswordRequest) (*handlers.ResetPasswordReply, error)
- func WithAuthorization(accessToken string, session string) clientv2.RequestInterceptor
- func WithEmptyInterceptor() clientv2.RequestInterceptor
- func WithLoggingInterceptor() clientv2.RequestInterceptor
- type AddUserToGroupWithRole
- type AddUserToGroupWithRole_CreateGroupMembership
- type AddUserToGroupWithRole_CreateGroupMembership_GroupMembership
- func (t *AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetGroupID() string
- func (t *AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetID() string
- func (t *AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetRole() *enums.Role
- func (t *AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetUserID() string
- type AddUserToOrgWithRole
- type AddUserToOrgWithRole_CreateOrgMembership
- type AddUserToOrgWithRole_CreateOrgMembership_OrgMembership
- func (t *AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetID() string
- func (t *AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetOrganizationID() string
- func (t *AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetRole() *enums.Role
- func (t *AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetUserID() string
- type AuthenticationError
- type Client
- func (c *Client) AddUserToGroupWithRole(ctx context.Context, input CreateGroupMembershipInput, ...) (*AddUserToGroupWithRole, error)
- func (c *Client) AddUserToOrgWithRole(ctx context.Context, input CreateOrgMembershipInput, ...) (*AddUserToOrgWithRole, error)
- func (c *Client) CreateDocumentData(ctx context.Context, input CreateDocumentDataInput, ...) (*CreateDocumentData, error)
- func (c *Client) CreateGroup(ctx context.Context, input CreateGroupInput, ...) (*CreateGroup, error)
- func (c *Client) CreateInvite(ctx context.Context, input CreateInviteInput, ...) (*CreateInvite, error)
- func (c *Client) CreateOrganization(ctx context.Context, input CreateOrganizationInput, ...) (*CreateOrganization, error)
- func (c *Client) CreatePersonalAccessToken(ctx context.Context, input CreatePersonalAccessTokenInput, ...) (*CreatePersonalAccessToken, error)
- func (c *Client) CreateTFASetting(ctx context.Context, input CreateTFASettingInput, ...) (*CreateTFASetting, error)
- func (c *Client) CreateTemplate(ctx context.Context, input CreateTemplateInput, ...) (*CreateTemplate, error)
- func (c *Client) CreateUser(ctx context.Context, input CreateUserInput, ...) (*CreateUser, error)
- func (c *Client) DeleteDocumentData(ctx context.Context, deleteDocumentDataID string, ...) (*DeleteDocumentData, error)
- func (c *Client) DeleteGroup(ctx context.Context, deleteGroupID string, ...) (*DeleteGroup, error)
- func (c *Client) DeleteInvite(ctx context.Context, deleteInviteID string, ...) (*DeleteInvite, error)
- func (c *Client) DeleteOrganization(ctx context.Context, deleteOrganizationID string, ...) (*DeleteOrganization, error)
- func (c *Client) DeletePersonalAccessToken(ctx context.Context, deletePersonalAccessTokenID string, ...) (*DeletePersonalAccessToken, error)
- func (c *Client) DeleteUser(ctx context.Context, deleteUserID string, ...) (*DeleteUser, error)
- func (c *Client) GetAllGroups(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllGroups, error)
- func (c *Client) GetAllOrganizations(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllOrganizations, error)
- func (c *Client) GetAllPersonalAccessTokens(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllPersonalAccessTokens, error)
- func (c *Client) GetAllTemplates(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllTemplates, error)
- func (c *Client) GetAllUsers(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllUsers, error)
- func (c *Client) GetDocumentData(ctx context.Context, documentDataID string, ...) (*GetDocumentData, error)
- func (c *Client) GetGroupByID(ctx context.Context, groupID string, ...) (*GetGroupByID, error)
- func (c *Client) GetGroupMembersByGroupID(ctx context.Context, where *GroupMembershipWhereInput, ...) (*GetGroupMembersByGroupID, error)
- func (c *Client) GetGroupSettingByID(ctx context.Context, groupSettingID string, ...) (*GetGroupSettingByID, error)
- func (c *Client) GetGroupSettingWhere(ctx context.Context, where GroupSettingWhereInput, ...) (*GetGroupSettingWhere, error)
- func (c *Client) GetGroupSettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetGroupSettings, error)
- func (c *Client) GetInvite(ctx context.Context, inviteID string, ...) (*GetInvite, error)
- func (c *Client) GetOrgMembersByOrgID(ctx context.Context, where *OrgMembershipWhereInput, ...) (*GetOrgMembersByOrgID, error)
- func (c *Client) GetOrganizationByID(ctx context.Context, organizationID string, ...) (*GetOrganizationByID, error)
- func (c *Client) GetOrganizationSettingByID(ctx context.Context, organizationSettingID string, ...) (*GetOrganizationSettingByID, error)
- func (c *Client) GetOrganizationSettingWhere(ctx context.Context, where OrganizationSettingWhereInput, ...) (*GetOrganizationSettingWhere, error)
- func (c *Client) GetOrganizationSettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetOrganizationSettings, error)
- func (c *Client) GetPersonalAccessTokenByID(ctx context.Context, personalAccessTokenID string, ...) (*GetPersonalAccessTokenByID, error)
- func (c *Client) GetTFASetting(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetTFASetting, error)
- func (c *Client) GetTFASettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetTFASettings, error)
- func (c *Client) GetTemplate(ctx context.Context, getTemplateID string, ...) (*GetTemplate, error)
- func (c *Client) GetUserByID(ctx context.Context, userID string, ...) (*GetUserByID, error)
- func (c *Client) GetUserByIDWithOrgs(ctx context.Context, userID string, ...) (*GetUserByIDWithOrgs, error)
- func (c *Client) GetUserSettingByID(ctx context.Context, userSettingID string, ...) (*GetUserSettingByID, error)
- func (c *Client) GetUserSettingWhere(ctx context.Context, where UserSettingWhereInput, ...) (*GetUserSettingWhere, error)
- func (c *Client) GetUserSettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetUserSettings, error)
- func (c *Client) GroupsWhere(ctx context.Context, where *GroupWhereInput, ...) (*GroupsWhere, error)
- func (c *Client) InvitesByOrgID(ctx context.Context, where *InviteWhereInput, ...) (*InvitesByOrgID, error)
- func (c *Client) OrganizationsWhere(ctx context.Context, where *OrganizationWhereInput, ...) (*OrganizationsWhere, error)
- func (c *Client) RemoveUserFromGroup(ctx context.Context, deleteGroupMembershipID string, ...) (*RemoveUserFromGroup, error)
- func (c *Client) RemoveUserFromOrg(ctx context.Context, deleteOrgMembershipID string, ...) (*RemoveUserFromOrg, error)
- func (c *Client) Subscribers(ctx context.Context, where *SubscriberWhereInput, ...) (*Subscribers, error)
- func (c *Client) UpdateDocumentData(ctx context.Context, updateDocumentDataID string, ...) (*UpdateDocumentData, error)
- func (c *Client) UpdateGroup(ctx context.Context, updateGroupID string, input UpdateGroupInput, ...) (*UpdateGroup, error)
- func (c *Client) UpdateGroupSetting(ctx context.Context, updateGroupSettingID string, ...) (*UpdateGroupSetting, error)
- func (c *Client) UpdateOrganization(ctx context.Context, updateOrganizationID string, ...) (*UpdateOrganization, error)
- func (c *Client) UpdateOrganizationSetting(ctx context.Context, updateOrganizationSettingID string, ...) (*UpdateOrganizationSetting, error)
- func (c *Client) UpdatePersonalAccessToken(ctx context.Context, updatePersonalAccessTokenID string, ...) (*UpdatePersonalAccessToken, error)
- func (c *Client) UpdateTFASetting(ctx context.Context, input UpdateTFASettingInput, ...) (*UpdateTFASetting, error)
- func (c *Client) UpdateTemplate(ctx context.Context, updateTemplateID string, input UpdateTemplateInput, ...) (*UpdateTemplate, error)
- func (c *Client) UpdateUser(ctx context.Context, updateUserID string, input UpdateUserInput, ...) (*UpdateUser, error)
- func (c *Client) UpdateUserRoleInGroup(ctx context.Context, updateGroupMemberID string, ...) (*UpdateUserRoleInGroup, error)
- func (c *Client) UpdateUserRoleInOrg(ctx context.Context, updateOrgMemberID string, input UpdateOrgMembershipInput, ...) (*UpdateUserRoleInOrg, error)
- func (c *Client) UpdateUserSetting(ctx context.Context, updateUserSettingID string, input UpdateUserSettingInput, ...) (*UpdateUserSetting, error)
- type CreateDocumentData
- type CreateDocumentDataInput
- type CreateDocumentData_CreateDocumentData
- type CreateDocumentData_CreateDocumentData_DocumentData
- func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetCreatedAt() *time.Time
- func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetCreatedBy() *string
- func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetData() *json.RawMessage
- func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetID() string
- func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetTemplateID() string
- func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetUpdatedAt() *time.Time
- func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetUpdatedBy() *string
- type CreateEntitlementInput
- type CreateGroup
- type CreateGroupInput
- type CreateGroupMembershipInput
- type CreateGroupSettingInput
- type CreateGroup_CreateGroup
- type CreateGroup_CreateGroup_Group
- func (t *CreateGroup_CreateGroup_Group) GetCreatedAt() *time.Time
- func (t *CreateGroup_CreateGroup_Group) GetCreatedBy() *string
- func (t *CreateGroup_CreateGroup_Group) GetDescription() *string
- func (t *CreateGroup_CreateGroup_Group) GetDisplayName() string
- func (t *CreateGroup_CreateGroup_Group) GetID() string
- func (t *CreateGroup_CreateGroup_Group) GetLogoURL() *string
- func (t *CreateGroup_CreateGroup_Group) GetMembers() []*CreateGroup_CreateGroup_Group_Members
- func (t *CreateGroup_CreateGroup_Group) GetName() string
- func (t *CreateGroup_CreateGroup_Group) GetOwner() *CreateGroup_CreateGroup_Group_Owner
- func (t *CreateGroup_CreateGroup_Group) GetSetting() *CreateGroup_CreateGroup_Group_Setting
- func (t *CreateGroup_CreateGroup_Group) GetUpdatedAt() *time.Time
- func (t *CreateGroup_CreateGroup_Group) GetUpdatedBy() *string
- type CreateGroup_CreateGroup_Group_Members
- type CreateGroup_CreateGroup_Group_Members_User
- type CreateGroup_CreateGroup_Group_Owner
- type CreateGroup_CreateGroup_Group_Setting
- func (t *CreateGroup_CreateGroup_Group_Setting) GetCreatedAt() *time.Time
- func (t *CreateGroup_CreateGroup_Group_Setting) GetCreatedBy() *string
- func (t *CreateGroup_CreateGroup_Group_Setting) GetID() string
- func (t *CreateGroup_CreateGroup_Group_Setting) GetJoinPolicy() *enums.JoinPolicy
- func (t *CreateGroup_CreateGroup_Group_Setting) GetSyncToGithub() *bool
- func (t *CreateGroup_CreateGroup_Group_Setting) GetSyncToSlack() *bool
- func (t *CreateGroup_CreateGroup_Group_Setting) GetTags() []string
- func (t *CreateGroup_CreateGroup_Group_Setting) GetUpdatedAt() *time.Time
- func (t *CreateGroup_CreateGroup_Group_Setting) GetUpdatedBy() *string
- func (t *CreateGroup_CreateGroup_Group_Setting) GetVisibility() *enums.Visibility
- type CreateIntegrationInput
- type CreateInvite
- type CreateInviteInput
- type CreateInvite_CreateInvite
- type CreateInvite_CreateInvite_Invite
- func (t *CreateInvite_CreateInvite_Invite) GetExpires() *time.Time
- func (t *CreateInvite_CreateInvite_Invite) GetID() string
- func (t *CreateInvite_CreateInvite_Invite) GetOwner() *CreateInvite_CreateInvite_Invite_Owner
- func (t *CreateInvite_CreateInvite_Invite) GetRecipient() string
- func (t *CreateInvite_CreateInvite_Invite) GetRequestorID() string
- func (t *CreateInvite_CreateInvite_Invite) GetRole() *enums.Role
- func (t *CreateInvite_CreateInvite_Invite) GetSendAttempts() int64
- func (t *CreateInvite_CreateInvite_Invite) GetStatus() *enums.InviteStatus
- type CreateInvite_CreateInvite_Invite_Owner
- type CreateOauthProviderInput
- type CreateOhAuthTooTokenInput
- type CreateOrgMembershipInput
- type CreateOrganization
- type CreateOrganizationInput
- type CreateOrganizationSettingInput
- type CreateOrganization_CreateOrganization
- type CreateOrganization_CreateOrganization_Organization
- func (t *CreateOrganization_CreateOrganization_Organization) GetChildren() *CreateOrganization_CreateOrganization_Organization_Children
- func (t *CreateOrganization_CreateOrganization_Organization) GetCreatedAt() *time.Time
- func (t *CreateOrganization_CreateOrganization_Organization) GetDescription() *string
- func (t *CreateOrganization_CreateOrganization_Organization) GetDisplayName() string
- func (t *CreateOrganization_CreateOrganization_Organization) GetID() string
- func (t *CreateOrganization_CreateOrganization_Organization) GetName() string
- func (t *CreateOrganization_CreateOrganization_Organization) GetParent() *CreateOrganization_CreateOrganization_Organization_Parent
- func (t *CreateOrganization_CreateOrganization_Organization) GetPersonalOrg() *bool
- func (t *CreateOrganization_CreateOrganization_Organization) GetSetting() *CreateOrganization_CreateOrganization_Organization_Setting
- func (t *CreateOrganization_CreateOrganization_Organization) GetUpdatedAt() *time.Time
- type CreateOrganization_CreateOrganization_Organization_Children
- type CreateOrganization_CreateOrganization_Organization_Children_Edges
- type CreateOrganization_CreateOrganization_Organization_Children_Edges_Node
- func (t *CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetDescription() *string
- func (t *CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetDisplayName() string
- func (t *CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetID() string
- func (t *CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetName() string
- type CreateOrganization_CreateOrganization_Organization_Parent
- type CreateOrganization_CreateOrganization_Organization_Setting
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetBillingAddress() *string
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetBillingContact() *string
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetBillingEmail() *string
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetBillingPhone() *string
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetCreatedAt() *time.Time
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetCreatedBy() *string
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetDomains() []string
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetGeoLocation() *enums.Region
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetID() string
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetTags() []string
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetTaxIdentifier() *string
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetUpdatedAt() *time.Time
- func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetUpdatedBy() *string
- type CreatePersonalAccessToken
- type CreatePersonalAccessTokenInput
- type CreatePersonalAccessToken_CreatePersonalAccessToken
- type CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetCreatedAt() *time.Time
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetCreatedBy() *string
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetDescription() *string
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetExpiresAt() *time.Time
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetID() string
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetLastUsedAt() *time.Time
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetName() string
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetOrganizations() ...
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetOwner() *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Owner
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetScopes() []string
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetToken() string
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetUpdatedAt() *time.Time
- func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetUpdatedBy() *string
- type CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Organizations
- type CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Owner
- type CreateSubscriberInput
- type CreateTFASetting
- type CreateTFASettingInput
- type CreateTFASetting_CreateTFASetting
- type CreateTFASetting_CreateTFASetting_TfaSetting
- type CreateTemplate
- type CreateTemplateInput
- type CreateTemplate_CreateTemplate
- type CreateTemplate_CreateTemplate_Template
- func (t *CreateTemplate_CreateTemplate_Template) GetCreatedAt() *time.Time
- func (t *CreateTemplate_CreateTemplate_Template) GetCreatedBy() *string
- func (t *CreateTemplate_CreateTemplate_Template) GetDeletedAt() *time.Time
- func (t *CreateTemplate_CreateTemplate_Template) GetDeletedBy() *string
- func (t *CreateTemplate_CreateTemplate_Template) GetDescription() *string
- func (t *CreateTemplate_CreateTemplate_Template) GetID() string
- func (t *CreateTemplate_CreateTemplate_Template) GetJsonconfig() *json.RawMessage
- func (t *CreateTemplate_CreateTemplate_Template) GetName() string
- func (t *CreateTemplate_CreateTemplate_Template) GetOwner() *CreateTemplate_CreateTemplate_Template_Owner
- func (t *CreateTemplate_CreateTemplate_Template) GetUischema() *json.RawMessage
- func (t *CreateTemplate_CreateTemplate_Template) GetUpdatedAt() *time.Time
- func (t *CreateTemplate_CreateTemplate_Template) GetUpdatedBy() *string
- type CreateTemplate_CreateTemplate_Template_Owner
- type CreateUser
- type CreateUserInput
- type CreateUserSettingInput
- type CreateUser_CreateUser
- type CreateUser_CreateUser_User
- func (t *CreateUser_CreateUser_User) GetAuthProvider() *enums.AuthProvider
- func (t *CreateUser_CreateUser_User) GetAvatarLocalFile() *string
- func (t *CreateUser_CreateUser_User) GetAvatarRemoteURL() *string
- func (t *CreateUser_CreateUser_User) GetDisplayName() string
- func (t *CreateUser_CreateUser_User) GetEmail() string
- func (t *CreateUser_CreateUser_User) GetFirstName() string
- func (t *CreateUser_CreateUser_User) GetGroupMemberships() []*CreateUser_CreateUser_User_GroupMemberships
- func (t *CreateUser_CreateUser_User) GetID() string
- func (t *CreateUser_CreateUser_User) GetLastName() string
- func (t *CreateUser_CreateUser_User) GetOrgMemberships() []*CreateUser_CreateUser_User_OrgMemberships
- func (t *CreateUser_CreateUser_User) GetSetting() *CreateUser_CreateUser_User_Setting
- func (t *CreateUser_CreateUser_User) GetSub() *string
- type CreateUser_CreateUser_User_GroupMemberships
- type CreateUser_CreateUser_User_OrgMemberships
- type CreateUser_CreateUser_User_Setting
- func (t *CreateUser_CreateUser_User_Setting) GetCreatedAt() *time.Time
- func (t *CreateUser_CreateUser_User_Setting) GetCreatedBy() *string
- func (t *CreateUser_CreateUser_User_Setting) GetDefaultOrg() *CreateUser_CreateUser_User_Setting_DefaultOrg
- func (t *CreateUser_CreateUser_User_Setting) GetEmailConfirmed() bool
- func (t *CreateUser_CreateUser_User_Setting) GetLocked() bool
- func (t *CreateUser_CreateUser_User_Setting) GetSilencedAt() *time.Time
- func (t *CreateUser_CreateUser_User_Setting) GetStatus() *enums.UserStatus
- func (t *CreateUser_CreateUser_User_Setting) GetSuspendedAt() *time.Time
- func (t *CreateUser_CreateUser_User_Setting) GetTags() []string
- func (t *CreateUser_CreateUser_User_Setting) GetUpdatedAt() *time.Time
- func (t *CreateUser_CreateUser_User_Setting) GetUpdatedBy() *string
- type CreateUser_CreateUser_User_Setting_DefaultOrg
- type DatumClient
- type DeleteDocumentData
- type DeleteDocumentData_DeleteDocumentData
- type DeleteGroup
- type DeleteGroup_DeleteGroup
- type DeleteInvite
- type DeleteInvite_DeleteInvite
- type DeleteOrganization
- type DeleteOrganization_DeleteOrganization
- type DeletePersonalAccessToken
- type DeletePersonalAccessToken_DeletePersonalAccessToken
- type DeleteUser
- type DeleteUser_DeleteUser
- type DocumentData
- type DocumentDataConnection
- type DocumentDataCreatePayload
- type DocumentDataDeletePayload
- type DocumentDataEdge
- type DocumentDataUpdatePayload
- type DocumentDataWhereInput
- type Dummy
- type Entitlement
- type EntitlementConnection
- type EntitlementCreatePayload
- type EntitlementDeletePayload
- type EntitlementEdge
- type EntitlementUpdatePayload
- type EntitlementWhereInput
- type GetAllGroups
- type GetAllGroups_Groups
- type GetAllGroups_Groups_Edges
- type GetAllGroups_Groups_Edges_Node
- func (t *GetAllGroups_Groups_Edges_Node) GetCreatedAt() *time.Time
- func (t *GetAllGroups_Groups_Edges_Node) GetCreatedBy() *string
- func (t *GetAllGroups_Groups_Edges_Node) GetDescription() *string
- func (t *GetAllGroups_Groups_Edges_Node) GetDisplayName() string
- func (t *GetAllGroups_Groups_Edges_Node) GetID() string
- func (t *GetAllGroups_Groups_Edges_Node) GetLogoURL() *string
- func (t *GetAllGroups_Groups_Edges_Node) GetMembers() []*GetAllGroups_Groups_Edges_Node_Members
- func (t *GetAllGroups_Groups_Edges_Node) GetName() string
- func (t *GetAllGroups_Groups_Edges_Node) GetOwner() *GetAllGroups_Groups_Edges_Node_Owner
- func (t *GetAllGroups_Groups_Edges_Node) GetSetting() *GetAllGroups_Groups_Edges_Node_Setting
- func (t *GetAllGroups_Groups_Edges_Node) GetUpdatedAt() *time.Time
- func (t *GetAllGroups_Groups_Edges_Node) GetUpdatedBy() *string
- type GetAllGroups_Groups_Edges_Node_Members
- type GetAllGroups_Groups_Edges_Node_Members_User
- type GetAllGroups_Groups_Edges_Node_Owner
- type GetAllGroups_Groups_Edges_Node_Setting
- func (t *GetAllGroups_Groups_Edges_Node_Setting) GetCreatedAt() *time.Time
- func (t *GetAllGroups_Groups_Edges_Node_Setting) GetCreatedBy() *string
- func (t *GetAllGroups_Groups_Edges_Node_Setting) GetID() string
- func (t *GetAllGroups_Groups_Edges_Node_Setting) GetJoinPolicy() *enums.JoinPolicy
- func (t *GetAllGroups_Groups_Edges_Node_Setting) GetSyncToGithub() *bool
- func (t *GetAllGroups_Groups_Edges_Node_Setting) GetSyncToSlack() *bool
- func (t *GetAllGroups_Groups_Edges_Node_Setting) GetTags() []string
- func (t *GetAllGroups_Groups_Edges_Node_Setting) GetUpdatedAt() *time.Time
- func (t *GetAllGroups_Groups_Edges_Node_Setting) GetUpdatedBy() *string
- func (t *GetAllGroups_Groups_Edges_Node_Setting) GetVisibility() *enums.Visibility
- type GetAllOrganizations
- type GetAllOrganizations_Organizations
- type GetAllOrganizations_Organizations_Edges
- type GetAllOrganizations_Organizations_Edges_Node
- func (t *GetAllOrganizations_Organizations_Edges_Node) GetChildren() *GetAllOrganizations_Organizations_Edges_Node_Children
- func (t *GetAllOrganizations_Organizations_Edges_Node) GetCreatedAt() *time.Time
- func (t *GetAllOrganizations_Organizations_Edges_Node) GetDescription() *string
- func (t *GetAllOrganizations_Organizations_Edges_Node) GetDisplayName() string
- func (t *GetAllOrganizations_Organizations_Edges_Node) GetID() string
- func (t *GetAllOrganizations_Organizations_Edges_Node) GetMembers() []*GetAllOrganizations_Organizations_Edges_Node_Members
- func (t *GetAllOrganizations_Organizations_Edges_Node) GetName() string
- func (t *GetAllOrganizations_Organizations_Edges_Node) GetParent() *GetAllOrganizations_Organizations_Edges_Node_Parent
- func (t *GetAllOrganizations_Organizations_Edges_Node) GetPersonalOrg() *bool
- func (t *GetAllOrganizations_Organizations_Edges_Node) GetSetting() *GetAllOrganizations_Organizations_Edges_Node_Setting
- func (t *GetAllOrganizations_Organizations_Edges_Node) GetUpdatedAt() *time.Time
- type GetAllOrganizations_Organizations_Edges_Node_Children
- type GetAllOrganizations_Organizations_Edges_Node_Children_Edges
- type GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node
- func (t *GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetDescription() *string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetDisplayName() string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetID() string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetName() string
- type GetAllOrganizations_Organizations_Edges_Node_Members
- type GetAllOrganizations_Organizations_Edges_Node_Members_User
- type GetAllOrganizations_Organizations_Edges_Node_Parent
- type GetAllOrganizations_Organizations_Edges_Node_Setting
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingAddress() *string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingContact() *string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingEmail() *string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingPhone() *string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetCreatedAt() *time.Time
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetCreatedBy() *string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetDomains() []string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetGeoLocation() *enums.Region
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetID() string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetTags() []string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetTaxIdentifier() *string
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetUpdatedAt() *time.Time
- func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetUpdatedBy() *string
- type GetAllPersonalAccessTokens
- type GetAllPersonalAccessTokens_PersonalAccessTokens
- type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges
- type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetCreatedAt() *time.Time
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetCreatedBy() *string
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetDescription() *string
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetExpiresAt() *time.Time
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetID() string
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetLastUsedAt() *time.Time
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetName() string
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetOrganizations() []*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Organizations
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetOwner() *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Owner
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetScopes() []string
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetToken() string
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetUpdatedAt() *time.Time
- func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetUpdatedBy() *string
- type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Organizations
- type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Owner
- type GetAllTemplates
- type GetAllTemplates_Templates
- type GetAllTemplates_Templates_Edges
- type GetAllTemplates_Templates_Edges_Node
- func (t *GetAllTemplates_Templates_Edges_Node) GetCreatedAt() *time.Time
- func (t *GetAllTemplates_Templates_Edges_Node) GetCreatedBy() *string
- func (t *GetAllTemplates_Templates_Edges_Node) GetDeletedAt() *time.Time
- func (t *GetAllTemplates_Templates_Edges_Node) GetDeletedBy() *string
- func (t *GetAllTemplates_Templates_Edges_Node) GetDescription() *string
- func (t *GetAllTemplates_Templates_Edges_Node) GetID() string
- func (t *GetAllTemplates_Templates_Edges_Node) GetJsonconfig() *json.RawMessage
- func (t *GetAllTemplates_Templates_Edges_Node) GetName() string
- func (t *GetAllTemplates_Templates_Edges_Node) GetOwner() *GetAllTemplates_Templates_Edges_Node_Owner
- func (t *GetAllTemplates_Templates_Edges_Node) GetUischema() *json.RawMessage
- func (t *GetAllTemplates_Templates_Edges_Node) GetUpdatedAt() *time.Time
- func (t *GetAllTemplates_Templates_Edges_Node) GetUpdatedBy() *string
- type GetAllTemplates_Templates_Edges_Node_Owner
- type GetAllUsers
- type GetAllUsers_Users
- type GetAllUsers_Users_Edges
- type GetAllUsers_Users_Edges_Node
- func (t *GetAllUsers_Users_Edges_Node) GetAuthProvider() *enums.AuthProvider
- func (t *GetAllUsers_Users_Edges_Node) GetAvatarLocalFile() *string
- func (t *GetAllUsers_Users_Edges_Node) GetAvatarRemoteURL() *string
- func (t *GetAllUsers_Users_Edges_Node) GetCreatedAt() *time.Time
- func (t *GetAllUsers_Users_Edges_Node) GetCreatedBy() *string
- func (t *GetAllUsers_Users_Edges_Node) GetDisplayName() string
- func (t *GetAllUsers_Users_Edges_Node) GetEmail() string
- func (t *GetAllUsers_Users_Edges_Node) GetFirstName() string
- func (t *GetAllUsers_Users_Edges_Node) GetID() string
- func (t *GetAllUsers_Users_Edges_Node) GetLastName() string
- func (t *GetAllUsers_Users_Edges_Node) GetLastSeen() *time.Time
- func (t *GetAllUsers_Users_Edges_Node) GetSetting() *GetAllUsers_Users_Edges_Node_Setting
- func (t *GetAllUsers_Users_Edges_Node) GetSub() *string
- func (t *GetAllUsers_Users_Edges_Node) GetUpdatedAt() *time.Time
- func (t *GetAllUsers_Users_Edges_Node) GetUpdatedBy() *string
- type GetAllUsers_Users_Edges_Node_Setting
- func (t *GetAllUsers_Users_Edges_Node_Setting) GetCreatedAt() *time.Time
- func (t *GetAllUsers_Users_Edges_Node_Setting) GetCreatedBy() *string
- func (t *GetAllUsers_Users_Edges_Node_Setting) GetDefaultOrg() *GetAllUsers_Users_Edges_Node_Setting_DefaultOrg
- func (t *GetAllUsers_Users_Edges_Node_Setting) GetEmailConfirmed() bool
- func (t *GetAllUsers_Users_Edges_Node_Setting) GetLocked() bool
- func (t *GetAllUsers_Users_Edges_Node_Setting) GetSilencedAt() *time.Time
- func (t *GetAllUsers_Users_Edges_Node_Setting) GetStatus() *enums.UserStatus
- func (t *GetAllUsers_Users_Edges_Node_Setting) GetSuspendedAt() *time.Time
- func (t *GetAllUsers_Users_Edges_Node_Setting) GetTags() []string
- func (t *GetAllUsers_Users_Edges_Node_Setting) GetUpdatedAt() *time.Time
- func (t *GetAllUsers_Users_Edges_Node_Setting) GetUpdatedBy() *string
- type GetAllUsers_Users_Edges_Node_Setting_DefaultOrg
- type GetDocumentData
- type GetDocumentData_DocumentData
- func (t *GetDocumentData_DocumentData) GetCreatedAt() *time.Time
- func (t *GetDocumentData_DocumentData) GetCreatedBy() *string
- func (t *GetDocumentData_DocumentData) GetData() *json.RawMessage
- func (t *GetDocumentData_DocumentData) GetID() string
- func (t *GetDocumentData_DocumentData) GetTemplateID() string
- func (t *GetDocumentData_DocumentData) GetUpdatedAt() *time.Time
- func (t *GetDocumentData_DocumentData) GetUpdatedBy() *string
- type GetGroupByID
- type GetGroupByID_Group
- func (t *GetGroupByID_Group) GetCreatedAt() *time.Time
- func (t *GetGroupByID_Group) GetCreatedBy() *string
- func (t *GetGroupByID_Group) GetDescription() *string
- func (t *GetGroupByID_Group) GetDisplayName() string
- func (t *GetGroupByID_Group) GetID() string
- func (t *GetGroupByID_Group) GetLogoURL() *string
- func (t *GetGroupByID_Group) GetMembers() []*GetGroupByID_Group_Members
- func (t *GetGroupByID_Group) GetName() string
- func (t *GetGroupByID_Group) GetOwner() *GetGroupByID_Group_Owner
- func (t *GetGroupByID_Group) GetSetting() *GetGroupByID_Group_Setting
- func (t *GetGroupByID_Group) GetUpdatedAt() *time.Time
- func (t *GetGroupByID_Group) GetUpdatedBy() *string
- type GetGroupByID_Group_Members
- type GetGroupByID_Group_Members_User
- type GetGroupByID_Group_Owner
- type GetGroupByID_Group_Setting
- func (t *GetGroupByID_Group_Setting) GetCreatedAt() *time.Time
- func (t *GetGroupByID_Group_Setting) GetCreatedBy() *string
- func (t *GetGroupByID_Group_Setting) GetID() string
- func (t *GetGroupByID_Group_Setting) GetJoinPolicy() *enums.JoinPolicy
- func (t *GetGroupByID_Group_Setting) GetSyncToGithub() *bool
- func (t *GetGroupByID_Group_Setting) GetSyncToSlack() *bool
- func (t *GetGroupByID_Group_Setting) GetTags() []string
- func (t *GetGroupByID_Group_Setting) GetUpdatedAt() *time.Time
- func (t *GetGroupByID_Group_Setting) GetUpdatedBy() *string
- func (t *GetGroupByID_Group_Setting) GetVisibility() *enums.Visibility
- type GetGroupMembersByGroupID
- type GetGroupMembersByGroupID_GroupMemberships
- type GetGroupMembersByGroupID_GroupMemberships_Edges
- type GetGroupMembersByGroupID_GroupMemberships_Edges_Node
- func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetGroupID() string
- func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetID() string
- func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetRole() *enums.Role
- func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetUser() *GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User
- func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetUserID() string
- type GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User
- func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetDisplayName() string
- func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetEmail() string
- func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetFirstName() string
- func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetID() string
- func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetLastName() string
- type GetGroupSettingByID
- type GetGroupSettingByID_GroupSetting
- func (t *GetGroupSettingByID_GroupSetting) GetCreatedAt() *time.Time
- func (t *GetGroupSettingByID_GroupSetting) GetCreatedBy() *string
- func (t *GetGroupSettingByID_GroupSetting) GetGroup() *GetGroupSettingByID_GroupSetting_Group
- func (t *GetGroupSettingByID_GroupSetting) GetID() string
- func (t *GetGroupSettingByID_GroupSetting) GetJoinPolicy() *enums.JoinPolicy
- func (t *GetGroupSettingByID_GroupSetting) GetSyncToGithub() *bool
- func (t *GetGroupSettingByID_GroupSetting) GetSyncToSlack() *bool
- func (t *GetGroupSettingByID_GroupSetting) GetTags() []string
- func (t *GetGroupSettingByID_GroupSetting) GetUpdatedAt() *time.Time
- func (t *GetGroupSettingByID_GroupSetting) GetUpdatedBy() *string
- func (t *GetGroupSettingByID_GroupSetting) GetVisibility() *enums.Visibility
- type GetGroupSettingByID_GroupSetting_Group
- type GetGroupSettingWhere
- type GetGroupSettingWhere_GroupSettings
- type GetGroupSettingWhere_GroupSettings_Edges
- type GetGroupSettingWhere_GroupSettings_Edges_Node
- func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetCreatedAt() *time.Time
- func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetCreatedBy() *string
- func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetGroup() *GetGroupSettingWhere_GroupSettings_Edges_Node_Group
- func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetID() string
- func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetJoinPolicy() *enums.JoinPolicy
- func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetSyncToGithub() *bool
- func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetSyncToSlack() *bool
- func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetTags() []string
- func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetUpdatedAt() *time.Time
- func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetUpdatedBy() *string
- func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetVisibility() *enums.Visibility
- type GetGroupSettingWhere_GroupSettings_Edges_Node_Group
- type GetGroupSettings
- type GetGroupSettings_GroupSettings
- type GetGroupSettings_GroupSettings_Edges
- type GetGroupSettings_GroupSettings_Edges_Node
- func (t *GetGroupSettings_GroupSettings_Edges_Node) GetCreatedAt() *time.Time
- func (t *GetGroupSettings_GroupSettings_Edges_Node) GetCreatedBy() *string
- func (t *GetGroupSettings_GroupSettings_Edges_Node) GetGroup() *GetGroupSettings_GroupSettings_Edges_Node_Group
- func (t *GetGroupSettings_GroupSettings_Edges_Node) GetID() string
- func (t *GetGroupSettings_GroupSettings_Edges_Node) GetJoinPolicy() *enums.JoinPolicy
- func (t *GetGroupSettings_GroupSettings_Edges_Node) GetSyncToGithub() *bool
- func (t *GetGroupSettings_GroupSettings_Edges_Node) GetSyncToSlack() *bool
- func (t *GetGroupSettings_GroupSettings_Edges_Node) GetTags() []string
- func (t *GetGroupSettings_GroupSettings_Edges_Node) GetUpdatedAt() *time.Time
- func (t *GetGroupSettings_GroupSettings_Edges_Node) GetUpdatedBy() *string
- func (t *GetGroupSettings_GroupSettings_Edges_Node) GetVisibility() *enums.Visibility
- type GetGroupSettings_GroupSettings_Edges_Node_Group
- type GetInvite
- type GetInvite_Invite
- func (t *GetInvite_Invite) GetCreatedAt() *time.Time
- func (t *GetInvite_Invite) GetCreatedBy() *string
- func (t *GetInvite_Invite) GetDeletedAt() *time.Time
- func (t *GetInvite_Invite) GetDeletedBy() *string
- func (t *GetInvite_Invite) GetExpires() *time.Time
- func (t *GetInvite_Invite) GetID() string
- func (t *GetInvite_Invite) GetOwner() *GetInvite_Invite_Owner
- func (t *GetInvite_Invite) GetRecipient() string
- func (t *GetInvite_Invite) GetRequestorID() string
- func (t *GetInvite_Invite) GetRole() *enums.Role
- func (t *GetInvite_Invite) GetSendAttempts() int64
- func (t *GetInvite_Invite) GetStatus() *enums.InviteStatus
- func (t *GetInvite_Invite) GetUpdatedAt() *time.Time
- func (t *GetInvite_Invite) GetUpdatedBy() *string
- type GetInvite_Invite_Owner
- type GetOrgMembersByOrgID
- type GetOrgMembersByOrgID_OrgMemberships
- type GetOrgMembersByOrgID_OrgMemberships_Edges
- type GetOrgMembersByOrgID_OrgMemberships_Edges_Node
- func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetID() string
- func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetOrganizationID() string
- func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetRole() *enums.Role
- func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetUser() *GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User
- func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetUserID() string
- type GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User
- func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetDisplayName() string
- func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetEmail() string
- func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetFirstName() string
- func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetID() string
- func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetLastName() string
- type GetOrganizationByID
- type GetOrganizationByID_Organization
- func (t *GetOrganizationByID_Organization) GetChildren() *GetOrganizationByID_Organization_Children
- func (t *GetOrganizationByID_Organization) GetCreatedAt() *time.Time
- func (t *GetOrganizationByID_Organization) GetCreatedBy() *string
- func (t *GetOrganizationByID_Organization) GetDescription() *string
- func (t *GetOrganizationByID_Organization) GetDisplayName() string
- func (t *GetOrganizationByID_Organization) GetID() string
- func (t *GetOrganizationByID_Organization) GetMembers() []*GetOrganizationByID_Organization_Members
- func (t *GetOrganizationByID_Organization) GetName() string
- func (t *GetOrganizationByID_Organization) GetParent() *GetOrganizationByID_Organization_Parent
- func (t *GetOrganizationByID_Organization) GetPersonalOrg() *bool
- func (t *GetOrganizationByID_Organization) GetSetting() *GetOrganizationByID_Organization_Setting
- func (t *GetOrganizationByID_Organization) GetUpdatedAt() *time.Time
- func (t *GetOrganizationByID_Organization) GetUpdatedBy() *string
- type GetOrganizationByID_Organization_Children
- type GetOrganizationByID_Organization_Children_Edges
- type GetOrganizationByID_Organization_Children_Edges_Node
- func (t *GetOrganizationByID_Organization_Children_Edges_Node) GetDescription() *string
- func (t *GetOrganizationByID_Organization_Children_Edges_Node) GetDisplayName() string
- func (t *GetOrganizationByID_Organization_Children_Edges_Node) GetID() string
- func (t *GetOrganizationByID_Organization_Children_Edges_Node) GetName() string
- type GetOrganizationByID_Organization_Members
- type GetOrganizationByID_Organization_Members_User
- type GetOrganizationByID_Organization_Parent
- type GetOrganizationByID_Organization_Setting
- func (t *GetOrganizationByID_Organization_Setting) GetBillingAddress() *string
- func (t *GetOrganizationByID_Organization_Setting) GetBillingContact() *string
- func (t *GetOrganizationByID_Organization_Setting) GetBillingEmail() *string
- func (t *GetOrganizationByID_Organization_Setting) GetBillingPhone() *string
- func (t *GetOrganizationByID_Organization_Setting) GetCreatedAt() *time.Time
- func (t *GetOrganizationByID_Organization_Setting) GetCreatedBy() *string
- func (t *GetOrganizationByID_Organization_Setting) GetDomains() []string
- func (t *GetOrganizationByID_Organization_Setting) GetGeoLocation() *enums.Region
- func (t *GetOrganizationByID_Organization_Setting) GetID() string
- func (t *GetOrganizationByID_Organization_Setting) GetTags() []string
- func (t *GetOrganizationByID_Organization_Setting) GetTaxIdentifier() *string
- func (t *GetOrganizationByID_Organization_Setting) GetUpdatedAt() *time.Time
- func (t *GetOrganizationByID_Organization_Setting) GetUpdatedBy() *string
- type GetOrganizationSettingByID
- type GetOrganizationSettingByID_OrganizationSetting
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetBillingAddress() *string
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetBillingContact() *string
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetBillingEmail() *string
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetBillingPhone() *string
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetCreatedAt() *time.Time
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetCreatedBy() *string
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetDeletedAt() *time.Time
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetDeletedBy() *string
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetDomains() []string
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetGeoLocation() *enums.Region
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetID() string
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetOrganization() *GetOrganizationSettingByID_OrganizationSetting_Organization
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetTags() []string
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetTaxIdentifier() *string
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetUpdatedAt() *time.Time
- func (t *GetOrganizationSettingByID_OrganizationSetting) GetUpdatedBy() *string
- type GetOrganizationSettingByID_OrganizationSetting_Organization
- type GetOrganizationSettingWhere
- type GetOrganizationSettingWhere_OrganizationSettings
- type GetOrganizationSettingWhere_OrganizationSettings_Edges
- type GetOrganizationSettingWhere_OrganizationSettings_Edges_Node
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingAddress() *string
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingContact() *string
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingEmail() *string
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingPhone() *string
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetCreatedAt() *time.Time
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetCreatedBy() *string
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetDeletedAt() *time.Time
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetDeletedBy() *string
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetDomains() []string
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetGeoLocation() *enums.Region
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetID() string
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetOrganization() *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node_Organization
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetTags() []string
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetTaxIdentifier() *string
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetUpdatedAt() *time.Time
- func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetUpdatedBy() *string
- type GetOrganizationSettingWhere_OrganizationSettings_Edges_Node_Organization
- type GetOrganizationSettings
- type GetOrganizationSettings_OrganizationSettings
- type GetOrganizationSettings_OrganizationSettings_Edges
- type GetOrganizationSettings_OrganizationSettings_Edges_Node
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingAddress() *string
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingContact() *string
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingEmail() *string
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingPhone() *string
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetCreatedAt() *time.Time
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetCreatedBy() *string
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetDeletedAt() *time.Time
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetDeletedBy() *string
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetDomains() []string
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetGeoLocation() *enums.Region
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetID() string
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetOrganization() *GetOrganizationSettings_OrganizationSettings_Edges_Node_Organization
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetTags() []string
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetTaxIdentifier() *string
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetUpdatedAt() *time.Time
- func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetUpdatedBy() *string
- type GetOrganizationSettings_OrganizationSettings_Edges_Node_Organization
- type GetPersonalAccessTokenByID
- type GetPersonalAccessTokenByID_PersonalAccessToken
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetCreatedAt() *time.Time
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetCreatedBy() *string
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetDescription() *string
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetExpiresAt() *time.Time
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetID() string
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetLastUsedAt() *time.Time
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetName() string
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetOrganizations() []*GetPersonalAccessTokenByID_PersonalAccessToken_Organizations
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetOwner() *GetPersonalAccessTokenByID_PersonalAccessToken_Owner
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetScopes() []string
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetToken() string
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetUpdatedAt() *time.Time
- func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetUpdatedBy() *string
- type GetPersonalAccessTokenByID_PersonalAccessToken_Organizations
- type GetPersonalAccessTokenByID_PersonalAccessToken_Owner
- type GetTFASetting
- type GetTFASetting_TfaSetting
- type GetTFASettings
- type GetTFASettings_TfaSettings
- type GetTFASettings_TfaSettings_Edges
- type GetTFASettings_TfaSettings_Edges_Node
- type GetTemplate
- type GetTemplate_Template
- func (t *GetTemplate_Template) GetCreatedAt() *time.Time
- func (t *GetTemplate_Template) GetCreatedBy() *string
- func (t *GetTemplate_Template) GetDeletedAt() *time.Time
- func (t *GetTemplate_Template) GetDeletedBy() *string
- func (t *GetTemplate_Template) GetDescription() *string
- func (t *GetTemplate_Template) GetID() string
- func (t *GetTemplate_Template) GetJsonconfig() *json.RawMessage
- func (t *GetTemplate_Template) GetName() string
- func (t *GetTemplate_Template) GetOwner() *GetTemplate_Template_Owner
- func (t *GetTemplate_Template) GetUischema() *json.RawMessage
- func (t *GetTemplate_Template) GetUpdatedAt() *time.Time
- func (t *GetTemplate_Template) GetUpdatedBy() *string
- type GetTemplate_Template_Owner
- type GetUserByID
- type GetUserByIDWithOrgs
- type GetUserByIDWithOrgs_User
- func (t *GetUserByIDWithOrgs_User) GetAuthProvider() *enums.AuthProvider
- func (t *GetUserByIDWithOrgs_User) GetAvatarLocalFile() *string
- func (t *GetUserByIDWithOrgs_User) GetAvatarRemoteURL() *string
- func (t *GetUserByIDWithOrgs_User) GetCreatedAt() *time.Time
- func (t *GetUserByIDWithOrgs_User) GetCreatedBy() *string
- func (t *GetUserByIDWithOrgs_User) GetDisplayName() string
- func (t *GetUserByIDWithOrgs_User) GetEmail() string
- func (t *GetUserByIDWithOrgs_User) GetFirstName() string
- func (t *GetUserByIDWithOrgs_User) GetID() string
- func (t *GetUserByIDWithOrgs_User) GetLastName() string
- func (t *GetUserByIDWithOrgs_User) GetLastSeen() *time.Time
- func (t *GetUserByIDWithOrgs_User) GetOrgMemberships() []*GetUserByIDWithOrgs_User_OrgMemberships
- func (t *GetUserByIDWithOrgs_User) GetSetting() *GetUserByIDWithOrgs_User_Setting
- func (t *GetUserByIDWithOrgs_User) GetSub() *string
- func (t *GetUserByIDWithOrgs_User) GetUpdatedAt() *time.Time
- func (t *GetUserByIDWithOrgs_User) GetUpdatedBy() *string
- type GetUserByIDWithOrgs_User_OrgMemberships
- type GetUserByIDWithOrgs_User_OrgMemberships_User
- type GetUserByIDWithOrgs_User_Setting
- func (t *GetUserByIDWithOrgs_User_Setting) GetCreatedAt() *time.Time
- func (t *GetUserByIDWithOrgs_User_Setting) GetCreatedBy() *string
- func (t *GetUserByIDWithOrgs_User_Setting) GetDefaultOrg() *GetUserByIDWithOrgs_User_Setting_DefaultOrg
- func (t *GetUserByIDWithOrgs_User_Setting) GetEmailConfirmed() bool
- func (t *GetUserByIDWithOrgs_User_Setting) GetLocked() bool
- func (t *GetUserByIDWithOrgs_User_Setting) GetSilencedAt() *time.Time
- func (t *GetUserByIDWithOrgs_User_Setting) GetStatus() *enums.UserStatus
- func (t *GetUserByIDWithOrgs_User_Setting) GetSuspendedAt() *time.Time
- func (t *GetUserByIDWithOrgs_User_Setting) GetTags() []string
- func (t *GetUserByIDWithOrgs_User_Setting) GetUpdatedAt() *time.Time
- func (t *GetUserByIDWithOrgs_User_Setting) GetUpdatedBy() *string
- type GetUserByIDWithOrgs_User_Setting_DefaultOrg
- type GetUserByID_User
- func (t *GetUserByID_User) GetAuthProvider() *enums.AuthProvider
- func (t *GetUserByID_User) GetAvatarLocalFile() *string
- func (t *GetUserByID_User) GetAvatarRemoteURL() *string
- func (t *GetUserByID_User) GetCreatedAt() *time.Time
- func (t *GetUserByID_User) GetCreatedBy() *string
- func (t *GetUserByID_User) GetDisplayName() string
- func (t *GetUserByID_User) GetEmail() string
- func (t *GetUserByID_User) GetFirstName() string
- func (t *GetUserByID_User) GetID() string
- func (t *GetUserByID_User) GetLastName() string
- func (t *GetUserByID_User) GetLastSeen() *time.Time
- func (t *GetUserByID_User) GetOrganizations() []*GetUserByID_User_Organizations
- func (t *GetUserByID_User) GetSetting() *GetUserByID_User_Setting
- func (t *GetUserByID_User) GetSub() *string
- func (t *GetUserByID_User) GetUpdatedAt() *time.Time
- func (t *GetUserByID_User) GetUpdatedBy() *string
- type GetUserByID_User_Organizations
- type GetUserByID_User_Organizations_Members
- type GetUserByID_User_Setting
- func (t *GetUserByID_User_Setting) GetCreatedAt() *time.Time
- func (t *GetUserByID_User_Setting) GetCreatedBy() *string
- func (t *GetUserByID_User_Setting) GetDefaultOrg() *GetUserByID_User_Setting_DefaultOrg
- func (t *GetUserByID_User_Setting) GetEmailConfirmed() bool
- func (t *GetUserByID_User_Setting) GetLocked() bool
- func (t *GetUserByID_User_Setting) GetSilencedAt() *time.Time
- func (t *GetUserByID_User_Setting) GetStatus() *enums.UserStatus
- func (t *GetUserByID_User_Setting) GetSuspendedAt() *time.Time
- func (t *GetUserByID_User_Setting) GetTags() []string
- func (t *GetUserByID_User_Setting) GetUpdatedAt() *time.Time
- func (t *GetUserByID_User_Setting) GetUpdatedBy() *string
- type GetUserByID_User_Setting_DefaultOrg
- type GetUserSettingByID
- type GetUserSettingByID_UserSetting
- func (t *GetUserSettingByID_UserSetting) GetCreatedAt() *time.Time
- func (t *GetUserSettingByID_UserSetting) GetCreatedBy() *string
- func (t *GetUserSettingByID_UserSetting) GetDefaultOrg() *GetUserSettingByID_UserSetting_DefaultOrg
- func (t *GetUserSettingByID_UserSetting) GetDeletedAt() *time.Time
- func (t *GetUserSettingByID_UserSetting) GetDeletedBy() *string
- func (t *GetUserSettingByID_UserSetting) GetEmailConfirmed() bool
- func (t *GetUserSettingByID_UserSetting) GetID() string
- func (t *GetUserSettingByID_UserSetting) GetIsTfaEnabled() *bool
- func (t *GetUserSettingByID_UserSetting) GetLocked() bool
- func (t *GetUserSettingByID_UserSetting) GetSilencedAt() *time.Time
- func (t *GetUserSettingByID_UserSetting) GetStatus() *enums.UserStatus
- func (t *GetUserSettingByID_UserSetting) GetTags() []string
- func (t *GetUserSettingByID_UserSetting) GetUpdatedAt() *time.Time
- func (t *GetUserSettingByID_UserSetting) GetUpdatedBy() *string
- type GetUserSettingByID_UserSetting_DefaultOrg
- type GetUserSettingWhere
- type GetUserSettingWhere_UserSettings
- type GetUserSettingWhere_UserSettings_Edges
- type GetUserSettingWhere_UserSettings_Edges_Node
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetCreatedAt() *time.Time
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetCreatedBy() *string
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetDefaultOrg() *GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetDeletedAt() *time.Time
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetDeletedBy() *string
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetEmailConfirmed() bool
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetID() string
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetIsTfaEnabled() *bool
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetLocked() bool
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetSilencedAt() *time.Time
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetStatus() *enums.UserStatus
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetTags() []string
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetUpdatedAt() *time.Time
- func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetUpdatedBy() *string
- type GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg
- type GetUserSettings
- type GetUserSettings_UserSettings
- type GetUserSettings_UserSettings_Edges
- type GetUserSettings_UserSettings_Edges_Node
- func (t *GetUserSettings_UserSettings_Edges_Node) GetCreatedAt() *time.Time
- func (t *GetUserSettings_UserSettings_Edges_Node) GetCreatedBy() *string
- func (t *GetUserSettings_UserSettings_Edges_Node) GetDefaultOrg() *GetUserSettings_UserSettings_Edges_Node_DefaultOrg
- func (t *GetUserSettings_UserSettings_Edges_Node) GetDeletedAt() *time.Time
- func (t *GetUserSettings_UserSettings_Edges_Node) GetDeletedBy() *string
- func (t *GetUserSettings_UserSettings_Edges_Node) GetEmailConfirmed() bool
- func (t *GetUserSettings_UserSettings_Edges_Node) GetID() string
- func (t *GetUserSettings_UserSettings_Edges_Node) GetIsTfaEnabled() *bool
- func (t *GetUserSettings_UserSettings_Edges_Node) GetLocked() bool
- func (t *GetUserSettings_UserSettings_Edges_Node) GetSilencedAt() *time.Time
- func (t *GetUserSettings_UserSettings_Edges_Node) GetStatus() *enums.UserStatus
- func (t *GetUserSettings_UserSettings_Edges_Node) GetTags() []string
- func (t *GetUserSettings_UserSettings_Edges_Node) GetUpdatedAt() *time.Time
- func (t *GetUserSettings_UserSettings_Edges_Node) GetUpdatedBy() *string
- type GetUserSettings_UserSettings_Edges_Node_DefaultOrg
- type Group
- type GroupConnection
- type GroupCreatePayload
- type GroupDeletePayload
- type GroupEdge
- type GroupMembership
- type GroupMembershipConnection
- type GroupMembershipCreatePayload
- type GroupMembershipDeletePayload
- type GroupMembershipEdge
- type GroupMembershipUpdatePayload
- type GroupMembershipWhereInput
- type GroupOrder
- type GroupOrderField
- type GroupSetting
- type GroupSettingConnection
- type GroupSettingCreatePayload
- type GroupSettingDeletePayload
- type GroupSettingEdge
- type GroupSettingUpdatePayload
- type GroupSettingWhereInput
- type GroupUpdatePayload
- type GroupWhereInput
- type GroupsWhere
- type GroupsWhere_Groups
- type GroupsWhere_Groups_Edges
- type GroupsWhere_Groups_Edges_Node
- func (t *GroupsWhere_Groups_Edges_Node) GetCreatedAt() *time.Time
- func (t *GroupsWhere_Groups_Edges_Node) GetCreatedBy() *string
- func (t *GroupsWhere_Groups_Edges_Node) GetDescription() *string
- func (t *GroupsWhere_Groups_Edges_Node) GetDisplayName() string
- func (t *GroupsWhere_Groups_Edges_Node) GetID() string
- func (t *GroupsWhere_Groups_Edges_Node) GetLogoURL() *string
- func (t *GroupsWhere_Groups_Edges_Node) GetMembers() []*GroupsWhere_Groups_Edges_Node_Members
- func (t *GroupsWhere_Groups_Edges_Node) GetName() string
- func (t *GroupsWhere_Groups_Edges_Node) GetOwner() *GroupsWhere_Groups_Edges_Node_Owner
- func (t *GroupsWhere_Groups_Edges_Node) GetSetting() *GroupsWhere_Groups_Edges_Node_Setting
- func (t *GroupsWhere_Groups_Edges_Node) GetUpdatedAt() *time.Time
- func (t *GroupsWhere_Groups_Edges_Node) GetUpdatedBy() *string
- type GroupsWhere_Groups_Edges_Node_Members
- type GroupsWhere_Groups_Edges_Node_Members_User
- type GroupsWhere_Groups_Edges_Node_Owner
- type GroupsWhere_Groups_Edges_Node_Setting
- func (t *GroupsWhere_Groups_Edges_Node_Setting) GetCreatedAt() *time.Time
- func (t *GroupsWhere_Groups_Edges_Node_Setting) GetCreatedBy() *string
- func (t *GroupsWhere_Groups_Edges_Node_Setting) GetID() string
- func (t *GroupsWhere_Groups_Edges_Node_Setting) GetJoinPolicy() *enums.JoinPolicy
- func (t *GroupsWhere_Groups_Edges_Node_Setting) GetSyncToGithub() *bool
- func (t *GroupsWhere_Groups_Edges_Node_Setting) GetSyncToSlack() *bool
- func (t *GroupsWhere_Groups_Edges_Node_Setting) GetTags() []string
- func (t *GroupsWhere_Groups_Edges_Node_Setting) GetUpdatedAt() *time.Time
- func (t *GroupsWhere_Groups_Edges_Node_Setting) GetUpdatedBy() *string
- func (t *GroupsWhere_Groups_Edges_Node_Setting) GetVisibility() *enums.Visibility
- type Integration
- type IntegrationConnection
- type IntegrationCreatePayload
- type IntegrationDeletePayload
- type IntegrationEdge
- type IntegrationOrder
- type IntegrationOrderField
- type IntegrationUpdatePayload
- type IntegrationWhereInput
- type Invite
- type InviteConnection
- type InviteCreatePayload
- type InviteDeletePayload
- type InviteEdge
- type InviteUpdatePayload
- type InviteWhereInput
- type InvitesByOrgID
- type InvitesByOrgID_Invites
- type InvitesByOrgID_Invites_Edges
- type InvitesByOrgID_Invites_Edges_Node
- type InvitesByOrgID_Invites_Edges_Node_Owner
- type InvitesByOrgID_Invites_Edges_Node_Owner_Invites
- func (t *InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetRecipient() string
- func (t *InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetRequestorID() string
- func (t *InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetRole() *enums.Role
- func (t *InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetSendAttempts() int64
- func (t *InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetStatus() *enums.InviteStatus
- type Mutation
- type OauthProvider
- type OauthProviderConnection
- type OauthProviderCreatePayload
- type OauthProviderDeletePayload
- type OauthProviderEdge
- type OauthProviderUpdatePayload
- type OauthProviderWhereInput
- type OhAuthTooToken
- type OhAuthTooTokenConnection
- type OhAuthTooTokenCreatePayload
- type OhAuthTooTokenDeletePayload
- type OhAuthTooTokenEdge
- type OhAuthTooTokenUpdatePayload
- type OhAuthTooTokenWhereInput
- type OrderDirection
- type OrgMembership
- type OrgMembershipConnection
- type OrgMembershipCreatePayload
- type OrgMembershipDeletePayload
- type OrgMembershipEdge
- type OrgMembershipUpdatePayload
- type OrgMembershipWhereInput
- type Organization
- type OrganizationConnection
- type OrganizationCreatePayload
- type OrganizationDeletePayload
- type OrganizationEdge
- type OrganizationHistory
- type OrganizationHistoryOrder
- type OrganizationHistoryOrderField
- type OrganizationHistoryWhereInput
- type OrganizationOrder
- type OrganizationOrderField
- type OrganizationSetting
- type OrganizationSettingConnection
- type OrganizationSettingCreatePayload
- type OrganizationSettingDeletePayload
- type OrganizationSettingEdge
- type OrganizationSettingHistory
- type OrganizationSettingHistoryWhereInput
- type OrganizationSettingUpdatePayload
- type OrganizationSettingWhereInput
- type OrganizationUpdatePayload
- type OrganizationWhereInput
- type OrganizationsWhere
- type OrganizationsWhere_Organizations
- type OrganizationsWhere_Organizations_Edges
- type OrganizationsWhere_Organizations_Edges_Node
- func (t *OrganizationsWhere_Organizations_Edges_Node) GetChildren() *OrganizationsWhere_Organizations_Edges_Node_Children
- func (t *OrganizationsWhere_Organizations_Edges_Node) GetCreatedAt() *time.Time
- func (t *OrganizationsWhere_Organizations_Edges_Node) GetDescription() *string
- func (t *OrganizationsWhere_Organizations_Edges_Node) GetDisplayName() string
- func (t *OrganizationsWhere_Organizations_Edges_Node) GetID() string
- func (t *OrganizationsWhere_Organizations_Edges_Node) GetMembers() []*OrganizationsWhere_Organizations_Edges_Node_Members
- func (t *OrganizationsWhere_Organizations_Edges_Node) GetName() string
- func (t *OrganizationsWhere_Organizations_Edges_Node) GetParent() *OrganizationsWhere_Organizations_Edges_Node_Parent
- func (t *OrganizationsWhere_Organizations_Edges_Node) GetPersonalOrg() *bool
- func (t *OrganizationsWhere_Organizations_Edges_Node) GetSetting() *OrganizationsWhere_Organizations_Edges_Node_Setting
- func (t *OrganizationsWhere_Organizations_Edges_Node) GetUpdatedAt() *time.Time
- type OrganizationsWhere_Organizations_Edges_Node_Children
- type OrganizationsWhere_Organizations_Edges_Node_Children_Edges
- type OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node
- func (t *OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetDescription() *string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetDisplayName() string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetID() string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetName() string
- type OrganizationsWhere_Organizations_Edges_Node_Members
- type OrganizationsWhere_Organizations_Edges_Node_Members_User
- type OrganizationsWhere_Organizations_Edges_Node_Parent
- type OrganizationsWhere_Organizations_Edges_Node_Setting
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingAddress() *string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingContact() *string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingEmail() *string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingPhone() *string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetCreatedAt() *time.Time
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetCreatedBy() *string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetDomains() []string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetGeoLocation() *enums.Region
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetID() string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetTags() []string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetTaxIdentifier() *string
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetUpdatedAt() *time.Time
- func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetUpdatedBy() *string
- type PageInfo
- type PersonalAccessToken
- type PersonalAccessTokenConnection
- type PersonalAccessTokenCreatePayload
- type PersonalAccessTokenDeletePayload
- type PersonalAccessTokenEdge
- type PersonalAccessTokenUpdatePayload
- type PersonalAccessTokenWhereInput
- type Query
- type RemoveUserFromGroup
- type RemoveUserFromGroup_DeleteGroupMembership
- type RemoveUserFromOrg
- type RemoveUserFromOrg_DeleteOrgMembership
- type RequestError
- type Subscriber
- type SubscriberConnection
- type SubscriberCreatePayload
- type SubscriberDeletePayload
- type SubscriberEdge
- type SubscriberUpdatePayload
- type SubscriberWhereInput
- type Subscribers
- type Subscribers_Subscribers
- type Subscribers_Subscribers_Edges
- type Subscribers_Subscribers_Edges_Node
- func (t *Subscribers_Subscribers_Edges_Node) GetActive() bool
- func (t *Subscribers_Subscribers_Edges_Node) GetEmail() string
- func (t *Subscribers_Subscribers_Edges_Node) GetID() string
- func (t *Subscribers_Subscribers_Edges_Node) GetOwnerID() *string
- func (t *Subscribers_Subscribers_Edges_Node) GetVerifiedEmail() bool
- type Subscription
- type TFASetting
- type TFASettingConnection
- type TFASettingCreatePayload
- type TFASettingEdge
- type TFASettingUpdatePayload
- type TFASettingWhereInput
- type Template
- type TemplateConnection
- type TemplateCreatePayload
- type TemplateDeletePayload
- type TemplateEdge
- type TemplateOrder
- type TemplateOrderField
- type TemplateUpdatePayload
- type TemplateWhereInput
- type UpdateDocumentData
- type UpdateDocumentDataInput
- type UpdateDocumentData_UpdateDocumentData
- type UpdateDocumentData_UpdateDocumentData_DocumentData
- func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetCreatedAt() *time.Time
- func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetCreatedBy() *string
- func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetData() *json.RawMessage
- func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetID() string
- func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetTemplateID() string
- func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetUpdatedAt() *time.Time
- func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetUpdatedBy() *string
- type UpdateEntitlementInput
- type UpdateGroup
- type UpdateGroupInput
- type UpdateGroupMembershipInput
- type UpdateGroupSetting
- type UpdateGroupSettingInput
- type UpdateGroupSetting_UpdateGroupSetting
- type UpdateGroupSetting_UpdateGroupSetting_GroupSetting
- func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetCreatedAt() *time.Time
- func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetCreatedBy() *string
- func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetGroup() *UpdateGroupSetting_UpdateGroupSetting_GroupSetting_Group
- func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetID() string
- func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetJoinPolicy() *enums.JoinPolicy
- func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetSyncToGithub() *bool
- func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetSyncToSlack() *bool
- func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetTags() []string
- func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetUpdatedAt() *time.Time
- func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetUpdatedBy() *string
- func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetVisibility() *enums.Visibility
- type UpdateGroupSetting_UpdateGroupSetting_GroupSetting_Group
- type UpdateGroup_UpdateGroup
- type UpdateGroup_UpdateGroup_Group
- func (t *UpdateGroup_UpdateGroup_Group) GetDescription() *string
- func (t *UpdateGroup_UpdateGroup_Group) GetDisplayName() string
- func (t *UpdateGroup_UpdateGroup_Group) GetID() string
- func (t *UpdateGroup_UpdateGroup_Group) GetMembers() []*UpdateGroup_UpdateGroup_Group_Members
- func (t *UpdateGroup_UpdateGroup_Group) GetName() string
- func (t *UpdateGroup_UpdateGroup_Group) GetSetting() *UpdateGroup_UpdateGroup_Group_Setting
- func (t *UpdateGroup_UpdateGroup_Group) GetUpdatedAt() *time.Time
- func (t *UpdateGroup_UpdateGroup_Group) GetUpdatedBy() *string
- type UpdateGroup_UpdateGroup_Group_Members
- type UpdateGroup_UpdateGroup_Group_Members_User
- type UpdateGroup_UpdateGroup_Group_Setting
- func (t *UpdateGroup_UpdateGroup_Group_Setting) GetCreatedAt() *time.Time
- func (t *UpdateGroup_UpdateGroup_Group_Setting) GetCreatedBy() *string
- func (t *UpdateGroup_UpdateGroup_Group_Setting) GetID() string
- func (t *UpdateGroup_UpdateGroup_Group_Setting) GetJoinPolicy() *enums.JoinPolicy
- func (t *UpdateGroup_UpdateGroup_Group_Setting) GetSyncToGithub() *bool
- func (t *UpdateGroup_UpdateGroup_Group_Setting) GetSyncToSlack() *bool
- func (t *UpdateGroup_UpdateGroup_Group_Setting) GetTags() []string
- func (t *UpdateGroup_UpdateGroup_Group_Setting) GetUpdatedAt() *time.Time
- func (t *UpdateGroup_UpdateGroup_Group_Setting) GetUpdatedBy() *string
- func (t *UpdateGroup_UpdateGroup_Group_Setting) GetVisibility() *enums.Visibility
- type UpdateIntegrationInput
- type UpdateInviteInput
- type UpdateOauthProviderInput
- type UpdateOhAuthTooTokenInput
- type UpdateOrgMembershipInput
- type UpdateOrganization
- type UpdateOrganizationInput
- type UpdateOrganizationSetting
- type UpdateOrganizationSettingInput
- type UpdateOrganizationSetting_UpdateOrganizationSetting
- type UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingAddress() *string
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingContact() *string
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingEmail() *string
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingPhone() *string
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetCreatedAt() *time.Time
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetCreatedBy() *string
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetDeletedAt() *time.Time
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetDeletedBy() *string
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetDomains() []string
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetGeoLocation() *enums.Region
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetID() string
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetOrganization() ...
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetTags() []string
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetTaxIdentifier() *string
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetUpdatedAt() *time.Time
- func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetUpdatedBy() *string
- type UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting_Organization
- type UpdateOrganization_UpdateOrganization
- type UpdateOrganization_UpdateOrganization_Organization
- func (t *UpdateOrganization_UpdateOrganization_Organization) GetDescription() *string
- func (t *UpdateOrganization_UpdateOrganization_Organization) GetDisplayName() string
- func (t *UpdateOrganization_UpdateOrganization_Organization) GetID() string
- func (t *UpdateOrganization_UpdateOrganization_Organization) GetMembers() []*UpdateOrganization_UpdateOrganization_Organization_Members
- func (t *UpdateOrganization_UpdateOrganization_Organization) GetName() string
- func (t *UpdateOrganization_UpdateOrganization_Organization) GetSetting() *UpdateOrganization_UpdateOrganization_Organization_Setting
- type UpdateOrganization_UpdateOrganization_Organization_Members
- type UpdateOrganization_UpdateOrganization_Organization_Setting
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingAddress() *string
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingContact() *string
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingEmail() *string
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingPhone() *string
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetCreatedAt() *time.Time
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetCreatedBy() *string
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetDomains() []string
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetGeoLocation() *enums.Region
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetID() string
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetTags() []string
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetTaxIdentifier() *string
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetUpdatedAt() *time.Time
- func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetUpdatedBy() *string
- type UpdatePersonalAccessToken
- type UpdatePersonalAccessTokenInput
- type UpdatePersonalAccessToken_UpdatePersonalAccessToken
- type UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetCreatedAt() *time.Time
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetCreatedBy() *string
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetDescription() *string
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetExpiresAt() *time.Time
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetID() string
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetLastUsedAt() *time.Time
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetName() string
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetOrganizations() ...
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetOwner() *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Owner
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetScopes() []string
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetToken() string
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetUpdatedAt() *time.Time
- func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetUpdatedBy() *string
- type UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Organizations
- type UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Owner
- type UpdateSubscriberInput
- type UpdateTFASetting
- type UpdateTFASettingInput
- type UpdateTFASetting_UpdateTFASetting
- type UpdateTFASetting_UpdateTFASetting_TfaSetting
- type UpdateTemplate
- type UpdateTemplateInput
- type UpdateTemplate_UpdateTemplate
- type UpdateTemplate_UpdateTemplate_Template
- func (t *UpdateTemplate_UpdateTemplate_Template) GetCreatedAt() *time.Time
- func (t *UpdateTemplate_UpdateTemplate_Template) GetCreatedBy() *string
- func (t *UpdateTemplate_UpdateTemplate_Template) GetDeletedAt() *time.Time
- func (t *UpdateTemplate_UpdateTemplate_Template) GetDeletedBy() *string
- func (t *UpdateTemplate_UpdateTemplate_Template) GetDescription() *string
- func (t *UpdateTemplate_UpdateTemplate_Template) GetID() string
- func (t *UpdateTemplate_UpdateTemplate_Template) GetJsonconfig() *json.RawMessage
- func (t *UpdateTemplate_UpdateTemplate_Template) GetName() string
- func (t *UpdateTemplate_UpdateTemplate_Template) GetOwner() *UpdateTemplate_UpdateTemplate_Template_Owner
- func (t *UpdateTemplate_UpdateTemplate_Template) GetUischema() *json.RawMessage
- func (t *UpdateTemplate_UpdateTemplate_Template) GetUpdatedAt() *time.Time
- func (t *UpdateTemplate_UpdateTemplate_Template) GetUpdatedBy() *string
- type UpdateTemplate_UpdateTemplate_Template_Owner
- type UpdateUser
- type UpdateUserInput
- type UpdateUserRoleInGroup
- type UpdateUserRoleInGroup_UpdateGroupMembership
- type UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership
- func (t *UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetGroupID() string
- func (t *UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetID() string
- func (t *UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetRole() *enums.Role
- func (t *UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetUserID() string
- type UpdateUserRoleInOrg
- type UpdateUserRoleInOrg_UpdateOrgMembership
- type UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership
- func (t *UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetID() string
- func (t *UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetOrganizationID() string
- func (t *UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetRole() *enums.Role
- func (t *UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetUserID() string
- type UpdateUserSetting
- type UpdateUserSettingInput
- type UpdateUserSetting_UpdateUserSetting
- type UpdateUserSetting_UpdateUserSetting_UserSetting
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetCreatedAt() *time.Time
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetCreatedBy() *string
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetDefaultOrg() *UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetDeletedAt() *time.Time
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetDeletedBy() *string
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetEmailConfirmed() bool
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetID() string
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetIsTfaEnabled() *bool
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetLocked() bool
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetSilencedAt() *time.Time
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetStatus() *enums.UserStatus
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetTags() []string
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetUpdatedAt() *time.Time
- func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetUpdatedBy() *string
- type UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg
- type UpdateUser_UpdateUser
- type UpdateUser_UpdateUser_User
- func (t *UpdateUser_UpdateUser_User) GetAuthProvider() *enums.AuthProvider
- func (t *UpdateUser_UpdateUser_User) GetAvatarLocalFile() *string
- func (t *UpdateUser_UpdateUser_User) GetAvatarRemoteURL() *string
- func (t *UpdateUser_UpdateUser_User) GetDisplayName() string
- func (t *UpdateUser_UpdateUser_User) GetEmail() string
- func (t *UpdateUser_UpdateUser_User) GetFirstName() string
- func (t *UpdateUser_UpdateUser_User) GetGroupMemberships() []*UpdateUser_UpdateUser_User_GroupMemberships
- func (t *UpdateUser_UpdateUser_User) GetID() string
- func (t *UpdateUser_UpdateUser_User) GetLastName() string
- func (t *UpdateUser_UpdateUser_User) GetOrgMemberships() []*UpdateUser_UpdateUser_User_OrgMemberships
- func (t *UpdateUser_UpdateUser_User) GetSetting() *UpdateUser_UpdateUser_User_Setting
- func (t *UpdateUser_UpdateUser_User) GetSub() *string
- type UpdateUser_UpdateUser_User_GroupMemberships
- type UpdateUser_UpdateUser_User_OrgMemberships
- type UpdateUser_UpdateUser_User_Setting
- func (t *UpdateUser_UpdateUser_User_Setting) GetCreatedAt() *time.Time
- func (t *UpdateUser_UpdateUser_User_Setting) GetCreatedBy() *string
- func (t *UpdateUser_UpdateUser_User_Setting) GetDefaultOrg() *UpdateUser_UpdateUser_User_Setting_DefaultOrg
- func (t *UpdateUser_UpdateUser_User_Setting) GetEmailConfirmed() bool
- func (t *UpdateUser_UpdateUser_User_Setting) GetLocked() bool
- func (t *UpdateUser_UpdateUser_User_Setting) GetSilencedAt() *time.Time
- func (t *UpdateUser_UpdateUser_User_Setting) GetStatus() *enums.UserStatus
- func (t *UpdateUser_UpdateUser_User_Setting) GetSuspendedAt() *time.Time
- func (t *UpdateUser_UpdateUser_User_Setting) GetTags() []string
- func (t *UpdateUser_UpdateUser_User_Setting) GetUpdatedAt() *time.Time
- func (t *UpdateUser_UpdateUser_User_Setting) GetUpdatedBy() *string
- type UpdateUser_UpdateUser_User_Setting_DefaultOrg
- type User
- type UserConnection
- type UserCreatePayload
- type UserDeletePayload
- type UserEdge
- type UserOrder
- type UserOrderField
- type UserSetting
- type UserSettingConnection
- type UserSettingEdge
- type UserSettingUpdatePayload
- type UserSettingWhereInput
- type UserUpdatePayload
- type UserWhereInput
Constants ¶
const AddUserToGroupWithRoleDocument = `` /* 176-byte string literal not displayed */
const AddUserToOrgWithRoleDocument = `` /* 175-byte string literal not displayed */
const CreateDocumentDataDocument = `` /* 208-byte string literal not displayed */
const CreateGroupDocument = `` /* 471-byte string literal not displayed */
const CreateInviteDocument = `` /* 206-byte string literal not displayed */
const CreateOrganizationDocument = `` /* 566-byte string literal not displayed */
const CreatePersonalAccessTokenDocument = `` /* 362-byte string literal not displayed */
const CreateTFASettingDocument = `` /* 164-byte string literal not displayed */
const CreateTemplateDocument = `` /* 268-byte string literal not displayed */
const CreateUserDocument = `` /* 522-byte string literal not displayed */
const DeleteDocumentDataDocument = `mutation DeleteDocumentData ($deleteDocumentDataId: ID!) {
deleteDocumentData(id: $deleteDocumentDataId) {
deletedID
}
}
`
const DeleteGroupDocument = `mutation DeleteGroup ($deleteGroupId: ID!) {
deleteGroup(id: $deleteGroupId) {
deletedID
}
}
`
const DeleteInviteDocument = `mutation DeleteInvite ($deleteInviteId: ID!) {
deleteInvite(id: $deleteInviteId) {
deletedID
}
}
`
const DeleteOrganizationDocument = `mutation DeleteOrganization ($deleteOrganizationId: ID!) {
deleteOrganization(id: $deleteOrganizationId) {
deletedID
}
}
`
const DeletePersonalAccessTokenDocument = `` /* 153-byte string literal not displayed */
const DeleteUserDocument = `mutation DeleteUser ($deleteUserId: ID!) {
deleteUser(id: $deleteUserId) {
deletedID
}
}
`
const GetAllGroupsDocument = `` /* 469-byte string literal not displayed */
const GetAllOrganizationsDocument = `` /* 650-byte string literal not displayed */
const GetAllPersonalAccessTokensDocument = `` /* 318-byte string literal not displayed */
const GetAllTemplatesDocument = `` /* 241-byte string literal not displayed */
const GetAllUsersDocument = `` /* 487-byte string literal not displayed */
const GetDocumentDataDocument = `` /* 162-byte string literal not displayed */
const GetGroupByIDDocument = `` /* 403-byte string literal not displayed */
const GetGroupMembersByGroupIDDocument = `` /* 259-byte string literal not displayed */
const GetGroupSettingByIDDocument = `` /* 228-byte string literal not displayed */
const GetGroupSettingWhereDocument = `` /* 290-byte string literal not displayed */
const GetGroupSettingsDocument = `` /* 237-byte string literal not displayed */
const GetInviteDocument = `` /* 252-byte string literal not displayed */
const GetOrgMembersByOrgIDDocument = `` /* 258-byte string literal not displayed */
const GetOrganizationByIDDocument = `` /* 598-byte string literal not displayed */
const GetOrganizationSettingByIDDocument = `` /* 336-byte string literal not displayed */
const GetOrganizationSettingWhereDocument = `` /* 401-byte string literal not displayed */
const GetOrganizationSettingsDocument = `` /* 341-byte string literal not displayed */
const GetPersonalAccessTokenByIDDocument = `` /* 308-byte string literal not displayed */
const GetTFASettingDocument = `query GetTFASetting {
tfaSetting {
totpAllowed
recoveryCodes
verified
}
}
`
const GetTFASettingsDocument = `query GetTFASettings {
tfaSettings {
edges {
node {
totpAllowed
recoveryCodes
verified
}
}
}
}
`
const GetTemplateDocument = `` /* 221-byte string literal not displayed */
const GetUserByIDDocument = `` /* 508-byte string literal not displayed */
const GetUserByIDWithOrgsDocument = `` /* 510-byte string literal not displayed */
const GetUserSettingByIDDocument = `` /* 284-byte string literal not displayed */
const GetUserSettingWhereDocument = `` /* 357-byte string literal not displayed */
const GetUserSettingsDocument = `` /* 305-byte string literal not displayed */
const GroupsWhereDocument = `` /* 509-byte string literal not displayed */
const InvitesByOrgIDDocument = `` /* 235-byte string literal not displayed */
const OrganizationsWhereDocument = `` /* 697-byte string literal not displayed */
const RemoveUserFromGroupDocument = `` /* 135-byte string literal not displayed */
const RemoveUserFromOrgDocument = `` /* 127-byte string literal not displayed */
const SubscribersDocument = `` /* 173-byte string literal not displayed */
const UpdateDocumentDataDocument = `` /* 263-byte string literal not displayed */
const UpdateGroupDocument = `` /* 452-byte string literal not displayed */
const UpdateGroupSettingDocument = `` /* 331-byte string literal not displayed */
const UpdateOrganizationDocument = `` /* 480-byte string literal not displayed */
const UpdateOrganizationSettingDocument = `` /* 458-byte string literal not displayed */
const UpdatePersonalAccessTokenDocument = `` /* 431-byte string literal not displayed */
const UpdateTFASettingDocument = `` /* 164-byte string literal not displayed */
const UpdateTemplateDocument = `` /* 315-byte string literal not displayed */
const UpdateUserDocument = `` /* 530-byte string literal not displayed */
const UpdateUserRoleInGroupDocument = `` /* 228-byte string literal not displayed */
const UpdateUserRoleInOrgDocument = `` /* 223-byte string literal not displayed */
const UpdateUserSettingDocument = `` /* 390-byte string literal not displayed */
Variables ¶
var AllGroupOrderField = []GroupOrderField{ GroupOrderFieldName, GroupOrderFieldDisplayName, }
var AllIntegrationOrderField = []IntegrationOrderField{ IntegrationOrderFieldName, IntegrationOrderFieldKind, }
var AllOrderDirection = []OrderDirection{ OrderDirectionAsc, OrderDirectionDesc, }
var AllOrganizationHistoryOrderField = []OrganizationHistoryOrderField{ OrganizationHistoryOrderFieldName, OrganizationHistoryOrderFieldDisplayName, }
var AllOrganizationOrderField = []OrganizationOrderField{ OrganizationOrderFieldName, OrganizationOrderFieldDisplayName, }
var AllTemplateOrderField = []TemplateOrderField{ TemplateOrderFieldName, }
var AllUserOrderField = []UserOrderField{ UserOrderFieldFirstName, UserOrderFieldLastName, UserOrderFieldDisplayName, }
var DocumentOperationNames = map[string]string{ GetDocumentDataDocument: "GetDocumentData", CreateDocumentDataDocument: "CreateDocumentData", UpdateDocumentDataDocument: "UpdateDocumentData", DeleteDocumentDataDocument: "DeleteDocumentData", GetGroupByIDDocument: "GetGroupByID", GroupsWhereDocument: "GroupsWhere", GetAllGroupsDocument: "GetAllGroups", CreateGroupDocument: "CreateGroup", UpdateGroupDocument: "UpdateGroup", DeleteGroupDocument: "DeleteGroup", GetGroupMembersByGroupIDDocument: "GetGroupMembersByGroupID", AddUserToGroupWithRoleDocument: "AddUserToGroupWithRole", UpdateUserRoleInGroupDocument: "UpdateUserRoleInGroup", RemoveUserFromGroupDocument: "RemoveUserFromGroup", GetGroupSettingByIDDocument: "GetGroupSettingByID", GetGroupSettingsDocument: "GetGroupSettings", GetGroupSettingWhereDocument: "GetGroupSettingWhere", UpdateGroupSettingDocument: "UpdateGroupSetting", CreateInviteDocument: "CreateInvite", DeleteInviteDocument: "DeleteInvite", GetInviteDocument: "GetInvite", InvitesByOrgIDDocument: "InvitesByOrgID", GetOrganizationByIDDocument: "GetOrganizationByID", GetAllOrganizationsDocument: "GetAllOrganizations", OrganizationsWhereDocument: "OrganizationsWhere", CreateOrganizationDocument: "CreateOrganization", UpdateOrganizationDocument: "UpdateOrganization", DeleteOrganizationDocument: "DeleteOrganization", GetOrganizationSettingByIDDocument: "GetOrganizationSettingByID", GetOrganizationSettingsDocument: "GetOrganizationSettings", GetOrganizationSettingWhereDocument: "GetOrganizationSettingWhere", UpdateOrganizationSettingDocument: "UpdateOrganizationSetting", GetOrgMembersByOrgIDDocument: "GetOrgMembersByOrgID", AddUserToOrgWithRoleDocument: "AddUserToOrgWithRole", UpdateUserRoleInOrgDocument: "UpdateUserRoleInOrg", RemoveUserFromOrgDocument: "RemoveUserFromOrg", CreatePersonalAccessTokenDocument: "CreatePersonalAccessToken", UpdatePersonalAccessTokenDocument: "UpdatePersonalAccessToken", GetAllPersonalAccessTokensDocument: "GetAllPersonalAccessTokens", GetPersonalAccessTokenByIDDocument: "GetPersonalAccessTokenByID", DeletePersonalAccessTokenDocument: "DeletePersonalAccessToken", SubscribersDocument: "Subscribers", CreateTemplateDocument: "CreateTemplate", UpdateTemplateDocument: "UpdateTemplate", GetAllTemplatesDocument: "GetAllTemplates", GetTemplateDocument: "GetTemplate", GetTFASettingDocument: "GetTFASetting", GetTFASettingsDocument: "GetTFASettings", CreateTFASettingDocument: "CreateTFASetting", UpdateTFASettingDocument: "UpdateTFASetting", GetUserByIDDocument: "GetUserByID", GetUserByIDWithOrgsDocument: "GetUserByIDWithOrgs", GetAllUsersDocument: "GetAllUsers", CreateUserDocument: "CreateUser", UpdateUserDocument: "UpdateUser", DeleteUserDocument: "DeleteUser", GetUserSettingByIDDocument: "GetUserSettingByID", GetUserSettingsDocument: "GetUserSettings", GetUserSettingWhereDocument: "GetUserSettingWhere", UpdateUserSettingDocument: "UpdateUserSetting", }
Functions ¶
func GetSessionFromCookieJar ¶
GetSessionFromCookieJar parses the cookie jar for the session cookie
func OrgInvite ¶
func OrgInvite(c *Client, ctx context.Context, r handlers.Invite, accessToken string) (*handlers.InviteReply, *oauth2.Token, error)
OrgInvite a new user within Datum org
func Register ¶
func Register(c *Client, ctx context.Context, r handlers.RegisterRequest) (*handlers.RegisterReply, error)
Register a new user within Datum
func Reset ¶
func Reset(c *Client, ctx context.Context, r handlers.ResetPasswordRequest) (*handlers.ResetPasswordReply, error)
Reset a user password
func WithAuthorization ¶
func WithAuthorization(accessToken string, session string) clientv2.RequestInterceptor
WithAuthorization adds the authorization header and session to the client request
func WithEmptyInterceptor ¶
func WithEmptyInterceptor() clientv2.RequestInterceptor
WithEmptyInterceptor adds an empty interceptor
func WithLoggingInterceptor ¶
func WithLoggingInterceptor() clientv2.RequestInterceptor
WithLoggingInterceptor adds a http debug logging interceptor
Types ¶
type AddUserToGroupWithRole ¶
type AddUserToGroupWithRole struct {
CreateGroupMembership AddUserToGroupWithRole_CreateGroupMembership "json:\"createGroupMembership\" graphql:\"createGroupMembership\""
}
func (*AddUserToGroupWithRole) GetCreateGroupMembership ¶
func (t *AddUserToGroupWithRole) GetCreateGroupMembership() *AddUserToGroupWithRole_CreateGroupMembership
type AddUserToGroupWithRole_CreateGroupMembership ¶
type AddUserToGroupWithRole_CreateGroupMembership struct {
GroupMembership AddUserToGroupWithRole_CreateGroupMembership_GroupMembership "json:\"groupMembership\" graphql:\"groupMembership\""
}
func (*AddUserToGroupWithRole_CreateGroupMembership) GetGroupMembership ¶
func (t *AddUserToGroupWithRole_CreateGroupMembership) GetGroupMembership() *AddUserToGroupWithRole_CreateGroupMembership_GroupMembership
type AddUserToGroupWithRole_CreateGroupMembership_GroupMembership ¶
type AddUserToGroupWithRole_CreateGroupMembership_GroupMembership struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
UserID string "json:\"userID\" graphql:\"userID\""
GroupID string "json:\"groupID\" graphql:\"groupID\""
}
func (*AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetGroupID ¶
func (t *AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetGroupID() string
func (*AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetID ¶
func (t *AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetID() string
func (*AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetRole ¶
func (t *AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetRole() *enums.Role
func (*AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetUserID ¶
func (t *AddUserToGroupWithRole_CreateGroupMembership_GroupMembership) GetUserID() string
type AddUserToOrgWithRole ¶
type AddUserToOrgWithRole struct {
CreateOrgMembership AddUserToOrgWithRole_CreateOrgMembership "json:\"createOrgMembership\" graphql:\"createOrgMembership\""
}
func (*AddUserToOrgWithRole) GetCreateOrgMembership ¶
func (t *AddUserToOrgWithRole) GetCreateOrgMembership() *AddUserToOrgWithRole_CreateOrgMembership
type AddUserToOrgWithRole_CreateOrgMembership ¶
type AddUserToOrgWithRole_CreateOrgMembership struct {
OrgMembership AddUserToOrgWithRole_CreateOrgMembership_OrgMembership "json:\"orgMembership\" graphql:\"orgMembership\""
}
func (*AddUserToOrgWithRole_CreateOrgMembership) GetOrgMembership ¶
func (t *AddUserToOrgWithRole_CreateOrgMembership) GetOrgMembership() *AddUserToOrgWithRole_CreateOrgMembership_OrgMembership
type AddUserToOrgWithRole_CreateOrgMembership_OrgMembership ¶
type AddUserToOrgWithRole_CreateOrgMembership_OrgMembership struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
UserID string "json:\"userID\" graphql:\"userID\""
OrganizationID string "json:\"organizationID\" graphql:\"organizationID\""
}
func (*AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetID ¶
func (t *AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetID() string
func (*AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetOrganizationID ¶
func (t *AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetOrganizationID() string
func (*AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetRole ¶
func (t *AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetRole() *enums.Role
func (*AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetUserID ¶
func (t *AddUserToOrgWithRole_CreateOrgMembership_OrgMembership) GetUserID() string
type AuthenticationError ¶
type AuthenticationError struct {
// StatusCode is the http response code that was returned
StatusCode int
// Body of the response
Body string
}
AuthenticationError is returned when a user cannot be authenticated
func (*AuthenticationError) Error ¶
func (e *AuthenticationError) Error() string
Error returns the AuthenticationError in string format
type Client ¶
func (*Client) AddUserToGroupWithRole ¶
func (c *Client) AddUserToGroupWithRole(ctx context.Context, input CreateGroupMembershipInput, interceptors ...clientv2.RequestInterceptor) (*AddUserToGroupWithRole, error)
func (*Client) AddUserToOrgWithRole ¶
func (c *Client) AddUserToOrgWithRole(ctx context.Context, input CreateOrgMembershipInput, interceptors ...clientv2.RequestInterceptor) (*AddUserToOrgWithRole, error)
func (*Client) CreateDocumentData ¶ added in v0.4.4
func (c *Client) CreateDocumentData(ctx context.Context, input CreateDocumentDataInput, interceptors ...clientv2.RequestInterceptor) (*CreateDocumentData, error)
func (*Client) CreateGroup ¶
func (c *Client) CreateGroup(ctx context.Context, input CreateGroupInput, interceptors ...clientv2.RequestInterceptor) (*CreateGroup, error)
func (*Client) CreateInvite ¶
func (c *Client) CreateInvite(ctx context.Context, input CreateInviteInput, interceptors ...clientv2.RequestInterceptor) (*CreateInvite, error)
func (*Client) CreateOrganization ¶
func (c *Client) CreateOrganization(ctx context.Context, input CreateOrganizationInput, interceptors ...clientv2.RequestInterceptor) (*CreateOrganization, error)
func (*Client) CreatePersonalAccessToken ¶
func (c *Client) CreatePersonalAccessToken(ctx context.Context, input CreatePersonalAccessTokenInput, interceptors ...clientv2.RequestInterceptor) (*CreatePersonalAccessToken, error)
func (*Client) CreateTFASetting ¶ added in v0.4.4
func (c *Client) CreateTFASetting(ctx context.Context, input CreateTFASettingInput, interceptors ...clientv2.RequestInterceptor) (*CreateTFASetting, error)
func (*Client) CreateTemplate ¶
func (c *Client) CreateTemplate(ctx context.Context, input CreateTemplateInput, interceptors ...clientv2.RequestInterceptor) (*CreateTemplate, error)
func (*Client) CreateUser ¶
func (c *Client) CreateUser(ctx context.Context, input CreateUserInput, interceptors ...clientv2.RequestInterceptor) (*CreateUser, error)
func (*Client) DeleteDocumentData ¶ added in v0.4.4
func (c *Client) DeleteDocumentData(ctx context.Context, deleteDocumentDataID string, interceptors ...clientv2.RequestInterceptor) (*DeleteDocumentData, error)
func (*Client) DeleteGroup ¶
func (c *Client) DeleteGroup(ctx context.Context, deleteGroupID string, interceptors ...clientv2.RequestInterceptor) (*DeleteGroup, error)
func (*Client) DeleteInvite ¶
func (c *Client) DeleteInvite(ctx context.Context, deleteInviteID string, interceptors ...clientv2.RequestInterceptor) (*DeleteInvite, error)
func (*Client) DeleteOrganization ¶
func (c *Client) DeleteOrganization(ctx context.Context, deleteOrganizationID string, interceptors ...clientv2.RequestInterceptor) (*DeleteOrganization, error)
func (*Client) DeletePersonalAccessToken ¶
func (c *Client) DeletePersonalAccessToken(ctx context.Context, deletePersonalAccessTokenID string, interceptors ...clientv2.RequestInterceptor) (*DeletePersonalAccessToken, error)
func (*Client) DeleteUser ¶
func (c *Client) DeleteUser(ctx context.Context, deleteUserID string, interceptors ...clientv2.RequestInterceptor) (*DeleteUser, error)
func (*Client) GetAllGroups ¶
func (c *Client) GetAllGroups(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllGroups, error)
func (*Client) GetAllOrganizations ¶
func (c *Client) GetAllOrganizations(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllOrganizations, error)
func (*Client) GetAllPersonalAccessTokens ¶
func (c *Client) GetAllPersonalAccessTokens(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllPersonalAccessTokens, error)
func (*Client) GetAllTemplates ¶
func (c *Client) GetAllTemplates(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllTemplates, error)
func (*Client) GetAllUsers ¶
func (c *Client) GetAllUsers(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllUsers, error)
func (*Client) GetDocumentData ¶ added in v0.4.4
func (c *Client) GetDocumentData(ctx context.Context, documentDataID string, interceptors ...clientv2.RequestInterceptor) (*GetDocumentData, error)
func (*Client) GetGroupByID ¶
func (c *Client) GetGroupByID(ctx context.Context, groupID string, interceptors ...clientv2.RequestInterceptor) (*GetGroupByID, error)
func (*Client) GetGroupMembersByGroupID ¶
func (c *Client) GetGroupMembersByGroupID(ctx context.Context, where *GroupMembershipWhereInput, interceptors ...clientv2.RequestInterceptor) (*GetGroupMembersByGroupID, error)
func (*Client) GetGroupSettingByID ¶
func (c *Client) GetGroupSettingByID(ctx context.Context, groupSettingID string, interceptors ...clientv2.RequestInterceptor) (*GetGroupSettingByID, error)
func (*Client) GetGroupSettingWhere ¶
func (c *Client) GetGroupSettingWhere(ctx context.Context, where GroupSettingWhereInput, interceptors ...clientv2.RequestInterceptor) (*GetGroupSettingWhere, error)
func (*Client) GetGroupSettings ¶
func (c *Client) GetGroupSettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetGroupSettings, error)
func (*Client) GetOrgMembersByOrgID ¶
func (c *Client) GetOrgMembersByOrgID(ctx context.Context, where *OrgMembershipWhereInput, interceptors ...clientv2.RequestInterceptor) (*GetOrgMembersByOrgID, error)
func (*Client) GetOrganizationByID ¶
func (c *Client) GetOrganizationByID(ctx context.Context, organizationID string, interceptors ...clientv2.RequestInterceptor) (*GetOrganizationByID, error)
func (*Client) GetOrganizationSettingByID ¶
func (c *Client) GetOrganizationSettingByID(ctx context.Context, organizationSettingID string, interceptors ...clientv2.RequestInterceptor) (*GetOrganizationSettingByID, error)
func (*Client) GetOrganizationSettingWhere ¶
func (c *Client) GetOrganizationSettingWhere(ctx context.Context, where OrganizationSettingWhereInput, interceptors ...clientv2.RequestInterceptor) (*GetOrganizationSettingWhere, error)
func (*Client) GetOrganizationSettings ¶
func (c *Client) GetOrganizationSettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetOrganizationSettings, error)
func (*Client) GetPersonalAccessTokenByID ¶
func (c *Client) GetPersonalAccessTokenByID(ctx context.Context, personalAccessTokenID string, interceptors ...clientv2.RequestInterceptor) (*GetPersonalAccessTokenByID, error)
func (*Client) GetTFASetting ¶ added in v0.4.4
func (c *Client) GetTFASetting(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetTFASetting, error)
func (*Client) GetTFASettings ¶
func (c *Client) GetTFASettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetTFASettings, error)
func (*Client) GetTemplate ¶
func (c *Client) GetTemplate(ctx context.Context, getTemplateID string, interceptors ...clientv2.RequestInterceptor) (*GetTemplate, error)
func (*Client) GetUserByID ¶
func (c *Client) GetUserByID(ctx context.Context, userID string, interceptors ...clientv2.RequestInterceptor) (*GetUserByID, error)
func (*Client) GetUserByIDWithOrgs ¶
func (c *Client) GetUserByIDWithOrgs(ctx context.Context, userID string, interceptors ...clientv2.RequestInterceptor) (*GetUserByIDWithOrgs, error)
func (*Client) GetUserSettingByID ¶
func (c *Client) GetUserSettingByID(ctx context.Context, userSettingID string, interceptors ...clientv2.RequestInterceptor) (*GetUserSettingByID, error)
func (*Client) GetUserSettingWhere ¶
func (c *Client) GetUserSettingWhere(ctx context.Context, where UserSettingWhereInput, interceptors ...clientv2.RequestInterceptor) (*GetUserSettingWhere, error)
func (*Client) GetUserSettings ¶
func (c *Client) GetUserSettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetUserSettings, error)
func (*Client) GroupsWhere ¶
func (c *Client) GroupsWhere(ctx context.Context, where *GroupWhereInput, interceptors ...clientv2.RequestInterceptor) (*GroupsWhere, error)
func (*Client) InvitesByOrgID ¶
func (c *Client) InvitesByOrgID(ctx context.Context, where *InviteWhereInput, interceptors ...clientv2.RequestInterceptor) (*InvitesByOrgID, error)
func (*Client) OrganizationsWhere ¶
func (c *Client) OrganizationsWhere(ctx context.Context, where *OrganizationWhereInput, interceptors ...clientv2.RequestInterceptor) (*OrganizationsWhere, error)
func (*Client) RemoveUserFromGroup ¶
func (c *Client) RemoveUserFromGroup(ctx context.Context, deleteGroupMembershipID string, interceptors ...clientv2.RequestInterceptor) (*RemoveUserFromGroup, error)
func (*Client) RemoveUserFromOrg ¶
func (c *Client) RemoveUserFromOrg(ctx context.Context, deleteOrgMembershipID string, interceptors ...clientv2.RequestInterceptor) (*RemoveUserFromOrg, error)
func (*Client) Subscribers ¶
func (c *Client) Subscribers(ctx context.Context, where *SubscriberWhereInput, interceptors ...clientv2.RequestInterceptor) (*Subscribers, error)
func (*Client) UpdateDocumentData ¶ added in v0.4.4
func (c *Client) UpdateDocumentData(ctx context.Context, updateDocumentDataID string, input UpdateDocumentDataInput, interceptors ...clientv2.RequestInterceptor) (*UpdateDocumentData, error)
func (*Client) UpdateGroup ¶
func (c *Client) UpdateGroup(ctx context.Context, updateGroupID string, input UpdateGroupInput, interceptors ...clientv2.RequestInterceptor) (*UpdateGroup, error)
func (*Client) UpdateGroupSetting ¶
func (c *Client) UpdateGroupSetting(ctx context.Context, updateGroupSettingID string, input UpdateGroupSettingInput, interceptors ...clientv2.RequestInterceptor) (*UpdateGroupSetting, error)
func (*Client) UpdateOrganization ¶
func (c *Client) UpdateOrganization(ctx context.Context, updateOrganizationID string, input UpdateOrganizationInput, interceptors ...clientv2.RequestInterceptor) (*UpdateOrganization, error)
func (*Client) UpdateOrganizationSetting ¶
func (c *Client) UpdateOrganizationSetting(ctx context.Context, updateOrganizationSettingID string, input UpdateOrganizationSettingInput, interceptors ...clientv2.RequestInterceptor) (*UpdateOrganizationSetting, error)
func (*Client) UpdatePersonalAccessToken ¶
func (c *Client) UpdatePersonalAccessToken(ctx context.Context, updatePersonalAccessTokenID string, input UpdatePersonalAccessTokenInput, interceptors ...clientv2.RequestInterceptor) (*UpdatePersonalAccessToken, error)
func (*Client) UpdateTFASetting ¶ added in v0.4.4
func (c *Client) UpdateTFASetting(ctx context.Context, input UpdateTFASettingInput, interceptors ...clientv2.RequestInterceptor) (*UpdateTFASetting, error)
func (*Client) UpdateTemplate ¶
func (c *Client) UpdateTemplate(ctx context.Context, updateTemplateID string, input UpdateTemplateInput, interceptors ...clientv2.RequestInterceptor) (*UpdateTemplate, error)
func (*Client) UpdateUser ¶
func (c *Client) UpdateUser(ctx context.Context, updateUserID string, input UpdateUserInput, interceptors ...clientv2.RequestInterceptor) (*UpdateUser, error)
func (*Client) UpdateUserRoleInGroup ¶
func (c *Client) UpdateUserRoleInGroup(ctx context.Context, updateGroupMemberID string, input UpdateGroupMembershipInput, interceptors ...clientv2.RequestInterceptor) (*UpdateUserRoleInGroup, error)
func (*Client) UpdateUserRoleInOrg ¶
func (c *Client) UpdateUserRoleInOrg(ctx context.Context, updateOrgMemberID string, input UpdateOrgMembershipInput, interceptors ...clientv2.RequestInterceptor) (*UpdateUserRoleInOrg, error)
func (*Client) UpdateUserSetting ¶
func (c *Client) UpdateUserSetting(ctx context.Context, updateUserSettingID string, input UpdateUserSettingInput, interceptors ...clientv2.RequestInterceptor) (*UpdateUserSetting, error)
type CreateDocumentData ¶ added in v0.4.4
type CreateDocumentData struct {
CreateDocumentData CreateDocumentData_CreateDocumentData "json:\"createDocumentData\" graphql:\"createDocumentData\""
}
func (*CreateDocumentData) GetCreateDocumentData ¶ added in v0.4.4
func (t *CreateDocumentData) GetCreateDocumentData() *CreateDocumentData_CreateDocumentData
type CreateDocumentDataInput ¶ added in v0.4.4
type CreateDocumentDataInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// the json data of the document
Data json.RawMessage `json:"data"`
TemplateID string `json:"templateID"`
}
CreateDocumentDataInput is used for create DocumentData object. Input was generated by ent.
type CreateDocumentData_CreateDocumentData ¶ added in v0.4.4
type CreateDocumentData_CreateDocumentData struct {
DocumentData CreateDocumentData_CreateDocumentData_DocumentData "json:\"documentData\" graphql:\"documentData\""
}
func (*CreateDocumentData_CreateDocumentData) GetDocumentData ¶ added in v0.4.4
func (t *CreateDocumentData_CreateDocumentData) GetDocumentData() *CreateDocumentData_CreateDocumentData_DocumentData
type CreateDocumentData_CreateDocumentData_DocumentData ¶ added in v0.4.4
type CreateDocumentData_CreateDocumentData_DocumentData struct {
ID string "json:\"id\" graphql:\"id\""
TemplateID string "json:\"templateID\" graphql:\"templateID\""
Data json.RawMessage "json:\"data\" graphql:\"data\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*CreateDocumentData_CreateDocumentData_DocumentData) GetCreatedAt ¶ added in v0.4.4
func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetCreatedAt() *time.Time
func (*CreateDocumentData_CreateDocumentData_DocumentData) GetCreatedBy ¶ added in v0.4.4
func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetCreatedBy() *string
func (*CreateDocumentData_CreateDocumentData_DocumentData) GetData ¶ added in v0.4.4
func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetData() *json.RawMessage
func (*CreateDocumentData_CreateDocumentData_DocumentData) GetID ¶ added in v0.4.4
func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetID() string
func (*CreateDocumentData_CreateDocumentData_DocumentData) GetTemplateID ¶ added in v0.4.4
func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetTemplateID() string
func (*CreateDocumentData_CreateDocumentData_DocumentData) GetUpdatedAt ¶ added in v0.4.4
func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetUpdatedAt() *time.Time
func (*CreateDocumentData_CreateDocumentData_DocumentData) GetUpdatedBy ¶ added in v0.4.4
func (t *CreateDocumentData_CreateDocumentData_DocumentData) GetUpdatedBy() *string
type CreateEntitlementInput ¶
type CreateEntitlementInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
Tier *enums.Tier `json:"tier,omitempty"`
// used to store references to external systems, e.g. Stripe
ExternalCustomerID *string `json:"externalCustomerID,omitempty"`
// used to store references to external systems, e.g. Stripe
ExternalSubscriptionID *string `json:"externalSubscriptionID,omitempty"`
// whether or not the customers entitlement expires - expires_at will show the time
Expires *bool `json:"expires,omitempty"`
// the time at which a customer's entitlement will expire, e.g. they've cancelled but paid through the end of the month
ExpiresAt *time.Time `json:"expiresAt,omitempty"`
// whether or not the customer has cancelled their entitlement - usually used in conjunction with expires and expires at
Cancelled *bool `json:"cancelled,omitempty"`
OwnerID string `json:"ownerID"`
}
CreateEntitlementInput is used for create Entitlement object. Input was generated by ent.
type CreateGroup ¶
type CreateGroup struct {
CreateGroup CreateGroup_CreateGroup "json:\"createGroup\" graphql:\"createGroup\""
}
func (*CreateGroup) GetCreateGroup ¶
func (t *CreateGroup) GetCreateGroup() *CreateGroup_CreateGroup
type CreateGroupInput ¶
type CreateGroupInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// the name of the group - must be unique within the organization
Name string `json:"name"`
// the groups description
Description *string `json:"description,omitempty"`
// the URL to an auto generated gravatar image for the group
GravatarLogoURL *string `json:"gravatarLogoURL,omitempty"`
// the URL to an image uploaded by the customer for the groups avatar image
LogoURL *string `json:"logoURL,omitempty"`
// The group's displayed 'friendly' name
DisplayName *string `json:"displayName,omitempty"`
OwnerID string `json:"ownerID"`
SettingID string `json:"settingID"`
UserIDs []string `json:"userIDs,omitempty"`
CreateGroupSettings *CreateGroupSettingInput `json:"createGroupSettings,omitempty"`
}
CreateGroupInput is used for create Group object. Input was generated by ent.
type CreateGroupMembershipInput ¶
type CreateGroupMembershipInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
Role *enums.Role `json:"role,omitempty"`
GroupID string `json:"groupID"`
UserID string `json:"userID"`
}
CreateGroupMembershipInput is used for create GroupMembership object. Input was generated by ent.
type CreateGroupSettingInput ¶
type CreateGroupSettingInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// whether the group is visible to it's members / owners only or if it's searchable by anyone within the organization
Visibility *enums.Visibility `json:"visibility,omitempty"`
// the policy governing ability to freely join a group, whether it requires an invitation, application, or either
JoinPolicy *enums.JoinPolicy `json:"joinPolicy,omitempty"`
// tags associated with the object
Tags []string `json:"tags,omitempty"`
// whether to sync group members to slack groups
SyncToSlack *bool `json:"syncToSlack,omitempty"`
// whether to sync group members to github groups
SyncToGithub *bool `json:"syncToGithub,omitempty"`
GroupID *string `json:"groupID,omitempty"`
}
CreateGroupSettingInput is used for create GroupSetting object. Input was generated by ent.
type CreateGroup_CreateGroup ¶
type CreateGroup_CreateGroup struct {
Group CreateGroup_CreateGroup_Group "json:\"group\" graphql:\"group\""
}
func (*CreateGroup_CreateGroup) GetGroup ¶
func (t *CreateGroup_CreateGroup) GetGroup() *CreateGroup_CreateGroup_Group
type CreateGroup_CreateGroup_Group ¶
type CreateGroup_CreateGroup_Group struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Owner CreateGroup_CreateGroup_Group_Owner "json:\"owner\" graphql:\"owner\""
LogoURL *string "json:\"logoURL,omitempty\" graphql:\"logoURL\""
Setting CreateGroup_CreateGroup_Group_Setting "json:\"setting\" graphql:\"setting\""
Members []*CreateGroup_CreateGroup_Group_Members "json:\"members,omitempty\" graphql:\"members\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*CreateGroup_CreateGroup_Group) GetCreatedAt ¶
func (t *CreateGroup_CreateGroup_Group) GetCreatedAt() *time.Time
func (*CreateGroup_CreateGroup_Group) GetCreatedBy ¶
func (t *CreateGroup_CreateGroup_Group) GetCreatedBy() *string
func (*CreateGroup_CreateGroup_Group) GetDescription ¶
func (t *CreateGroup_CreateGroup_Group) GetDescription() *string
func (*CreateGroup_CreateGroup_Group) GetDisplayName ¶
func (t *CreateGroup_CreateGroup_Group) GetDisplayName() string
func (*CreateGroup_CreateGroup_Group) GetID ¶
func (t *CreateGroup_CreateGroup_Group) GetID() string
func (*CreateGroup_CreateGroup_Group) GetLogoURL ¶
func (t *CreateGroup_CreateGroup_Group) GetLogoURL() *string
func (*CreateGroup_CreateGroup_Group) GetMembers ¶
func (t *CreateGroup_CreateGroup_Group) GetMembers() []*CreateGroup_CreateGroup_Group_Members
func (*CreateGroup_CreateGroup_Group) GetName ¶
func (t *CreateGroup_CreateGroup_Group) GetName() string
func (*CreateGroup_CreateGroup_Group) GetOwner ¶
func (t *CreateGroup_CreateGroup_Group) GetOwner() *CreateGroup_CreateGroup_Group_Owner
func (*CreateGroup_CreateGroup_Group) GetSetting ¶
func (t *CreateGroup_CreateGroup_Group) GetSetting() *CreateGroup_CreateGroup_Group_Setting
func (*CreateGroup_CreateGroup_Group) GetUpdatedAt ¶
func (t *CreateGroup_CreateGroup_Group) GetUpdatedAt() *time.Time
func (*CreateGroup_CreateGroup_Group) GetUpdatedBy ¶
func (t *CreateGroup_CreateGroup_Group) GetUpdatedBy() *string
type CreateGroup_CreateGroup_Group_Members ¶
type CreateGroup_CreateGroup_Group_Members struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
User CreateGroup_CreateGroup_Group_Members_User "json:\"user\" graphql:\"user\""
}
func (*CreateGroup_CreateGroup_Group_Members) GetID ¶
func (t *CreateGroup_CreateGroup_Group_Members) GetID() string
func (*CreateGroup_CreateGroup_Group_Members) GetRole ¶
func (t *CreateGroup_CreateGroup_Group_Members) GetRole() *enums.Role
func (*CreateGroup_CreateGroup_Group_Members) GetUser ¶
func (t *CreateGroup_CreateGroup_Group_Members) GetUser() *CreateGroup_CreateGroup_Group_Members_User
type CreateGroup_CreateGroup_Group_Members_User ¶
type CreateGroup_CreateGroup_Group_Members_User struct {
ID string "json:\"id\" graphql:\"id\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
}
func (*CreateGroup_CreateGroup_Group_Members_User) GetFirstName ¶
func (t *CreateGroup_CreateGroup_Group_Members_User) GetFirstName() string
func (*CreateGroup_CreateGroup_Group_Members_User) GetID ¶
func (t *CreateGroup_CreateGroup_Group_Members_User) GetID() string
func (*CreateGroup_CreateGroup_Group_Members_User) GetLastName ¶
func (t *CreateGroup_CreateGroup_Group_Members_User) GetLastName() string
type CreateGroup_CreateGroup_Group_Owner ¶
type CreateGroup_CreateGroup_Group_Owner struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*CreateGroup_CreateGroup_Group_Owner) GetID ¶
func (t *CreateGroup_CreateGroup_Group_Owner) GetID() string
type CreateGroup_CreateGroup_Group_Setting ¶
type CreateGroup_CreateGroup_Group_Setting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Visibility enums.Visibility "json:\"visibility\" graphql:\"visibility\""
JoinPolicy enums.JoinPolicy "json:\"joinPolicy\" graphql:\"joinPolicy\""
SyncToSlack *bool "json:\"syncToSlack,omitempty\" graphql:\"syncToSlack\""
SyncToGithub *bool "json:\"syncToGithub,omitempty\" graphql:\"syncToGithub\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
}
func (*CreateGroup_CreateGroup_Group_Setting) GetCreatedAt ¶
func (t *CreateGroup_CreateGroup_Group_Setting) GetCreatedAt() *time.Time
func (*CreateGroup_CreateGroup_Group_Setting) GetCreatedBy ¶
func (t *CreateGroup_CreateGroup_Group_Setting) GetCreatedBy() *string
func (*CreateGroup_CreateGroup_Group_Setting) GetID ¶
func (t *CreateGroup_CreateGroup_Group_Setting) GetID() string
func (*CreateGroup_CreateGroup_Group_Setting) GetJoinPolicy ¶
func (t *CreateGroup_CreateGroup_Group_Setting) GetJoinPolicy() *enums.JoinPolicy
func (*CreateGroup_CreateGroup_Group_Setting) GetSyncToGithub ¶
func (t *CreateGroup_CreateGroup_Group_Setting) GetSyncToGithub() *bool
func (*CreateGroup_CreateGroup_Group_Setting) GetSyncToSlack ¶
func (t *CreateGroup_CreateGroup_Group_Setting) GetSyncToSlack() *bool
func (*CreateGroup_CreateGroup_Group_Setting) GetTags ¶
func (t *CreateGroup_CreateGroup_Group_Setting) GetTags() []string
func (*CreateGroup_CreateGroup_Group_Setting) GetUpdatedAt ¶
func (t *CreateGroup_CreateGroup_Group_Setting) GetUpdatedAt() *time.Time
func (*CreateGroup_CreateGroup_Group_Setting) GetUpdatedBy ¶
func (t *CreateGroup_CreateGroup_Group_Setting) GetUpdatedBy() *string
func (*CreateGroup_CreateGroup_Group_Setting) GetVisibility ¶
func (t *CreateGroup_CreateGroup_Group_Setting) GetVisibility() *enums.Visibility
type CreateIntegrationInput ¶
type CreateIntegrationInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// the name of the integration - must be unique within the organization
Name string `json:"name"`
// a description of the integration
Description *string `json:"description,omitempty"`
Kind *string `json:"kind,omitempty"`
SecretName *string `json:"secretName,omitempty"`
OwnerID string `json:"ownerID"`
}
CreateIntegrationInput is used for create Integration object. Input was generated by ent.
type CreateInvite ¶
type CreateInvite struct {
CreateInvite CreateInvite_CreateInvite "json:\"createInvite\" graphql:\"createInvite\""
}
func (*CreateInvite) GetCreateInvite ¶
func (t *CreateInvite) GetCreateInvite() *CreateInvite_CreateInvite
type CreateInviteInput ¶
type CreateInviteInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// the expiration date of the invitation token which defaults to 14 days in the future from creation
Expires time.Time `json:"expires"`
// the email used as input to generate the invitation token and is the destination person the invitation is sent to who is required to accept to join the organization
Recipient string `json:"recipient"`
// the status of the invitation
Status *enums.InviteStatus `json:"status,omitempty"`
Role *enums.Role `json:"role,omitempty"`
// the number of attempts made to perform email send of the invitation, maximum of 5
SendAttempts *int64 `json:"sendAttempts,omitempty"`
// the user who initiated the invitation
RequestorID string `json:"requestorID"`
OwnerID string `json:"ownerID"`
}
CreateInviteInput is used for create Invite object. Input was generated by ent.
type CreateInvite_CreateInvite ¶
type CreateInvite_CreateInvite struct {
Invite CreateInvite_CreateInvite_Invite "json:\"invite\" graphql:\"invite\""
}
func (*CreateInvite_CreateInvite) GetInvite ¶
func (t *CreateInvite_CreateInvite) GetInvite() *CreateInvite_CreateInvite_Invite
type CreateInvite_CreateInvite_Invite ¶
type CreateInvite_CreateInvite_Invite struct {
ID string "json:\"id\" graphql:\"id\""
Recipient string "json:\"recipient\" graphql:\"recipient\""
Status enums.InviteStatus "json:\"status\" graphql:\"status\""
RequestorID string "json:\"requestorID\" graphql:\"requestorID\""
Expires time.Time "json:\"expires\" graphql:\"expires\""
Role enums.Role "json:\"role\" graphql:\"role\""
SendAttempts int64 "json:\"sendAttempts\" graphql:\"sendAttempts\""
Owner CreateInvite_CreateInvite_Invite_Owner "json:\"owner\" graphql:\"owner\""
}
func (*CreateInvite_CreateInvite_Invite) GetExpires ¶
func (t *CreateInvite_CreateInvite_Invite) GetExpires() *time.Time
func (*CreateInvite_CreateInvite_Invite) GetID ¶
func (t *CreateInvite_CreateInvite_Invite) GetID() string
func (*CreateInvite_CreateInvite_Invite) GetOwner ¶
func (t *CreateInvite_CreateInvite_Invite) GetOwner() *CreateInvite_CreateInvite_Invite_Owner
func (*CreateInvite_CreateInvite_Invite) GetRecipient ¶
func (t *CreateInvite_CreateInvite_Invite) GetRecipient() string
func (*CreateInvite_CreateInvite_Invite) GetRequestorID ¶
func (t *CreateInvite_CreateInvite_Invite) GetRequestorID() string
func (*CreateInvite_CreateInvite_Invite) GetRole ¶
func (t *CreateInvite_CreateInvite_Invite) GetRole() *enums.Role
func (*CreateInvite_CreateInvite_Invite) GetSendAttempts ¶
func (t *CreateInvite_CreateInvite_Invite) GetSendAttempts() int64
func (*CreateInvite_CreateInvite_Invite) GetStatus ¶
func (t *CreateInvite_CreateInvite_Invite) GetStatus() *enums.InviteStatus
type CreateInvite_CreateInvite_Invite_Owner ¶
type CreateInvite_CreateInvite_Invite_Owner struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*CreateInvite_CreateInvite_Invite_Owner) GetID ¶
func (t *CreateInvite_CreateInvite_Invite_Owner) GetID() string
type CreateOauthProviderInput ¶
type CreateOauthProviderInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// the oauth provider's name
Name string `json:"name"`
// the client id for the oauth provider
ClientID string `json:"clientID"`
// the client secret
ClientSecret string `json:"clientSecret"`
// the redirect url
RedirectURL string `json:"redirectURL"`
// the scopes
Scopes string `json:"scopes"`
// the auth url of the provider
AuthURL string `json:"authURL"`
// the token url of the provider
TokenURL string `json:"tokenURL"`
// the auth style, 0: auto detect 1: third party log in 2: log in with username and password
AuthStyle string `json:"authStyle"`
// the URL to request user information by token
InfoURL string `json:"infoURL"`
OwnerID *string `json:"ownerID,omitempty"`
}
CreateOauthProviderInput is used for create OauthProvider object. Input was generated by ent.
type CreateOhAuthTooTokenInput ¶
type CreateOhAuthTooTokenInput struct {
ClientID string `json:"clientID"`
Scopes []string `json:"scopes,omitempty"`
Nonce string `json:"nonce"`
ClaimsUserID string `json:"claimsUserID"`
ClaimsUsername string `json:"claimsUsername"`
ClaimsEmail string `json:"claimsEmail"`
ClaimsEmailVerified bool `json:"claimsEmailVerified"`
ClaimsGroups []string `json:"claimsGroups,omitempty"`
ClaimsPreferredUsername string `json:"claimsPreferredUsername"`
ConnectorID string `json:"connectorID"`
ConnectorData []string `json:"connectorData,omitempty"`
LastUsed *time.Time `json:"lastUsed,omitempty"`
}
CreateOhAuthTooTokenInput is used for create OhAuthTooToken object. Input was generated by ent.
type CreateOrgMembershipInput ¶
type CreateOrgMembershipInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
Role *enums.Role `json:"role,omitempty"`
OrganizationID string `json:"organizationID"`
UserID string `json:"userID"`
}
CreateOrgMembershipInput is used for create OrgMembership object. Input was generated by ent.
type CreateOrganization ¶
type CreateOrganization struct {
CreateOrganization CreateOrganization_CreateOrganization "json:\"createOrganization\" graphql:\"createOrganization\""
}
func (*CreateOrganization) GetCreateOrganization ¶
func (t *CreateOrganization) GetCreateOrganization() *CreateOrganization_CreateOrganization
type CreateOrganizationInput ¶
type CreateOrganizationInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// the name of the organization
Name string `json:"name"`
// The organization's displayed 'friendly' name
DisplayName *string `json:"displayName,omitempty"`
// An optional description of the organization
Description *string `json:"description,omitempty"`
// orgs directly associated with a user
PersonalOrg *bool `json:"personalOrg,omitempty"`
// URL of the user's remote avatar
AvatarRemoteURL *string `json:"avatarRemoteURL,omitempty"`
// Whether the organization has a dedicated database
DedicatedDb *bool `json:"dedicatedDb,omitempty"`
ParentID *string `json:"parentID,omitempty"`
GroupIDs []string `json:"groupIDs,omitempty"`
TemplateIDs []string `json:"templateIDs,omitempty"`
IntegrationIDs []string `json:"integrationIDs,omitempty"`
SettingID *string `json:"settingID,omitempty"`
EntitlementIDs []string `json:"entitlementIDs,omitempty"`
PersonalAccessTokenIDs []string `json:"personalAccessTokenIDs,omitempty"`
OauthproviderIDs []string `json:"oauthproviderIDs,omitempty"`
UserIDs []string `json:"userIDs,omitempty"`
InviteIDs []string `json:"inviteIDs,omitempty"`
SubscriberIDs []string `json:"subscriberIDs,omitempty"`
CreateOrgSettings *CreateOrganizationSettingInput `json:"createOrgSettings,omitempty"`
}
CreateOrganizationInput is used for create Organization object. Input was generated by ent.
type CreateOrganizationSettingInput ¶
type CreateOrganizationSettingInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// domains associated with the organization
Domains []string `json:"domains,omitempty"`
// Name of the person to contact for billing
BillingContact *string `json:"billingContact,omitempty"`
// Email address of the person to contact for billing
BillingEmail *string `json:"billingEmail,omitempty"`
// Phone number to contact for billing
BillingPhone *string `json:"billingPhone,omitempty"`
// Address to send billing information to
BillingAddress *string `json:"billingAddress,omitempty"`
// Usually government-issued tax ID or business ID such as ABN in Australia
TaxIdentifier *string `json:"taxIdentifier,omitempty"`
// tags associated with the object
Tags []string `json:"tags,omitempty"`
// geographical location of the organization
GeoLocation *enums.Region `json:"geoLocation,omitempty"`
OrganizationID *string `json:"organizationID,omitempty"`
}
CreateOrganizationSettingInput is used for create OrganizationSetting object. Input was generated by ent.
type CreateOrganization_CreateOrganization ¶
type CreateOrganization_CreateOrganization struct {
Organization CreateOrganization_CreateOrganization_Organization "json:\"organization\" graphql:\"organization\""
}
func (*CreateOrganization_CreateOrganization) GetOrganization ¶
func (t *CreateOrganization_CreateOrganization) GetOrganization() *CreateOrganization_CreateOrganization_Organization
type CreateOrganization_CreateOrganization_Organization ¶
type CreateOrganization_CreateOrganization_Organization struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
Setting *CreateOrganization_CreateOrganization_Organization_Setting "json:\"setting,omitempty\" graphql:\"setting\""
Parent *CreateOrganization_CreateOrganization_Organization_Parent "json:\"parent,omitempty\" graphql:\"parent\""
Children CreateOrganization_CreateOrganization_Organization_Children "json:\"children\" graphql:\"children\""
}
func (*CreateOrganization_CreateOrganization_Organization) GetChildren ¶
func (*CreateOrganization_CreateOrganization_Organization) GetCreatedAt ¶
func (t *CreateOrganization_CreateOrganization_Organization) GetCreatedAt() *time.Time
func (*CreateOrganization_CreateOrganization_Organization) GetDescription ¶
func (t *CreateOrganization_CreateOrganization_Organization) GetDescription() *string
func (*CreateOrganization_CreateOrganization_Organization) GetDisplayName ¶
func (t *CreateOrganization_CreateOrganization_Organization) GetDisplayName() string
func (*CreateOrganization_CreateOrganization_Organization) GetID ¶
func (t *CreateOrganization_CreateOrganization_Organization) GetID() string
func (*CreateOrganization_CreateOrganization_Organization) GetName ¶
func (t *CreateOrganization_CreateOrganization_Organization) GetName() string
func (*CreateOrganization_CreateOrganization_Organization) GetPersonalOrg ¶
func (t *CreateOrganization_CreateOrganization_Organization) GetPersonalOrg() *bool
func (*CreateOrganization_CreateOrganization_Organization) GetSetting ¶
func (*CreateOrganization_CreateOrganization_Organization) GetUpdatedAt ¶
func (t *CreateOrganization_CreateOrganization_Organization) GetUpdatedAt() *time.Time
type CreateOrganization_CreateOrganization_Organization_Children ¶
type CreateOrganization_CreateOrganization_Organization_Children struct {
Edges []*CreateOrganization_CreateOrganization_Organization_Children_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
type CreateOrganization_CreateOrganization_Organization_Children_Edges ¶
type CreateOrganization_CreateOrganization_Organization_Children_Edges struct {
Node *CreateOrganization_CreateOrganization_Organization_Children_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
type CreateOrganization_CreateOrganization_Organization_Children_Edges_Node ¶
type CreateOrganization_CreateOrganization_Organization_Children_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
}
func (*CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetDescription ¶
func (t *CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetDescription() *string
func (*CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetDisplayName ¶
func (t *CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetDisplayName() string
func (*CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetID ¶
func (t *CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetID() string
func (*CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetName ¶
func (t *CreateOrganization_CreateOrganization_Organization_Children_Edges_Node) GetName() string
type CreateOrganization_CreateOrganization_Organization_Parent ¶
type CreateOrganization_CreateOrganization_Organization_Parent struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
}
func (*CreateOrganization_CreateOrganization_Organization_Parent) GetID ¶
func (t *CreateOrganization_CreateOrganization_Organization_Parent) GetID() string
func (*CreateOrganization_CreateOrganization_Organization_Parent) GetName ¶
func (t *CreateOrganization_CreateOrganization_Organization_Parent) GetName() string
type CreateOrganization_CreateOrganization_Organization_Setting ¶
type CreateOrganization_CreateOrganization_Organization_Setting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Domains []string "json:\"domains,omitempty\" graphql:\"domains\""
BillingContact *string "json:\"billingContact,omitempty\" graphql:\"billingContact\""
BillingEmail *string "json:\"billingEmail,omitempty\" graphql:\"billingEmail\""
BillingPhone *string "json:\"billingPhone,omitempty\" graphql:\"billingPhone\""
BillingAddress *string "json:\"billingAddress,omitempty\" graphql:\"billingAddress\""
TaxIdentifier *string "json:\"taxIdentifier,omitempty\" graphql:\"taxIdentifier\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
GeoLocation *enums.Region "json:\"geoLocation,omitempty\" graphql:\"geoLocation\""
}
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetBillingAddress ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetBillingAddress() *string
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetBillingContact ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetBillingContact() *string
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetBillingEmail ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetBillingEmail() *string
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetBillingPhone ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetBillingPhone() *string
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetCreatedAt ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetCreatedAt() *time.Time
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetCreatedBy ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetCreatedBy() *string
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetDomains ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetDomains() []string
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetGeoLocation ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetGeoLocation() *enums.Region
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetID ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetID() string
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetTags ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetTags() []string
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetTaxIdentifier ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetTaxIdentifier() *string
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetUpdatedAt ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetUpdatedAt() *time.Time
func (*CreateOrganization_CreateOrganization_Organization_Setting) GetUpdatedBy ¶
func (t *CreateOrganization_CreateOrganization_Organization_Setting) GetUpdatedBy() *string
type CreatePersonalAccessToken ¶
type CreatePersonalAccessToken struct {
CreatePersonalAccessToken CreatePersonalAccessToken_CreatePersonalAccessToken "json:\"createPersonalAccessToken\" graphql:\"createPersonalAccessToken\""
}
func (*CreatePersonalAccessToken) GetCreatePersonalAccessToken ¶
func (t *CreatePersonalAccessToken) GetCreatePersonalAccessToken() *CreatePersonalAccessToken_CreatePersonalAccessToken
type CreatePersonalAccessTokenInput ¶
type CreatePersonalAccessTokenInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// the name associated with the token
Name string `json:"name"`
// when the token expires
ExpiresAt time.Time `json:"expiresAt"`
// a description of the token's purpose
Description *string `json:"description,omitempty"`
Scopes []string `json:"scopes,omitempty"`
LastUsedAt *time.Time `json:"lastUsedAt,omitempty"`
OwnerID string `json:"ownerID"`
OrganizationIDs []string `json:"organizationIDs,omitempty"`
}
CreatePersonalAccessTokenInput is used for create PersonalAccessToken object. Input was generated by ent.
type CreatePersonalAccessToken_CreatePersonalAccessToken ¶
type CreatePersonalAccessToken_CreatePersonalAccessToken struct {
PersonalAccessToken CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken "json:\"personalAccessToken\" graphql:\"personalAccessToken\""
}
func (*CreatePersonalAccessToken_CreatePersonalAccessToken) GetPersonalAccessToken ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken) GetPersonalAccessToken() *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken
type CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken ¶
type CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken struct {
ID string "json:\"id\" graphql:\"id\""
Token string "json:\"token\" graphql:\"token\""
Scopes []string "json:\"scopes,omitempty\" graphql:\"scopes\""
Organizations []*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Organizations "json:\"organizations,omitempty\" graphql:\"organizations\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Name string "json:\"name\" graphql:\"name\""
ExpiresAt time.Time "json:\"expiresAt\" graphql:\"expiresAt\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
LastUsedAt *time.Time "json:\"lastUsedAt,omitempty\" graphql:\"lastUsedAt\""
Owner CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Owner "json:\"owner\" graphql:\"owner\""
}
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetCreatedAt ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetCreatedAt() *time.Time
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetCreatedBy ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetCreatedBy() *string
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetDescription ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetDescription() *string
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetExpiresAt ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetExpiresAt() *time.Time
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetLastUsedAt ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetLastUsedAt() *time.Time
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetName ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetName() string
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetOrganizations ¶
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetScopes ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetScopes() []string
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetToken ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetToken() string
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetUpdatedAt ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetUpdatedAt() *time.Time
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetUpdatedBy ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken) GetUpdatedBy() *string
type CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Organizations ¶
type CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Organizations struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
}
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Organizations) GetID ¶
type CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Owner ¶
type CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Owner struct {
ID string "json:\"id\" graphql:\"id\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
}
func (*CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Owner) GetDisplayName ¶
func (t *CreatePersonalAccessToken_CreatePersonalAccessToken_PersonalAccessToken_Owner) GetDisplayName() string
type CreateSubscriberInput ¶
type CreateSubscriberInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// email address of the subscriber
Email string `json:"email"`
// phone number of the subscriber
PhoneNumber *string `json:"phoneNumber,omitempty"`
// indicates if the email address has been verified
VerifiedEmail *bool `json:"verifiedEmail,omitempty"`
// indicates if the phone number has been verified
VerifiedPhone *bool `json:"verifiedPhone,omitempty"`
// indicates if the subscriber is active or not, active users will have at least one verified contact method
Active *bool `json:"active,omitempty"`
OwnerID *string `json:"ownerID,omitempty"`
}
CreateSubscriberInput is used for create Subscriber object. Input was generated by ent.
type CreateTFASetting ¶ added in v0.4.4
type CreateTFASetting struct {
CreateTFASetting CreateTFASetting_CreateTFASetting "json:\"createTFASetting\" graphql:\"createTFASetting\""
}
func (*CreateTFASetting) GetCreateTFASetting ¶ added in v0.4.4
func (t *CreateTFASetting) GetCreateTFASetting() *CreateTFASetting_CreateTFASetting
type CreateTFASettingInput ¶ added in v0.4.4
type CreateTFASettingInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// specifies a user may complete authentication by verifying a TOTP code delivered through an authenticator app
TotpAllowed *bool `json:"totpAllowed,omitempty"`
OwnerID *string `json:"ownerID,omitempty"`
}
CreateTFASettingInput is used for create TFASetting object. Input was generated by ent.
type CreateTFASetting_CreateTFASetting ¶ added in v0.4.4
type CreateTFASetting_CreateTFASetting struct {
TfaSetting CreateTFASetting_CreateTFASetting_TfaSetting "json:\"tfaSetting\" graphql:\"tfaSetting\""
}
func (*CreateTFASetting_CreateTFASetting) GetTfaSetting ¶ added in v0.4.4
func (t *CreateTFASetting_CreateTFASetting) GetTfaSetting() *CreateTFASetting_CreateTFASetting_TfaSetting
type CreateTFASetting_CreateTFASetting_TfaSetting ¶ added in v0.4.4
type CreateTFASetting_CreateTFASetting_TfaSetting struct {
TotpAllowed *bool "json:\"totpAllowed,omitempty\" graphql:\"totpAllowed\""
RecoveryCodes []string "json:\"recoveryCodes,omitempty\" graphql:\"recoveryCodes\""
Verified bool "json:\"verified\" graphql:\"verified\""
}
func (*CreateTFASetting_CreateTFASetting_TfaSetting) GetRecoveryCodes ¶ added in v0.4.4
func (t *CreateTFASetting_CreateTFASetting_TfaSetting) GetRecoveryCodes() []string
func (*CreateTFASetting_CreateTFASetting_TfaSetting) GetTotpAllowed ¶ added in v0.4.4
func (t *CreateTFASetting_CreateTFASetting_TfaSetting) GetTotpAllowed() *bool
func (*CreateTFASetting_CreateTFASetting_TfaSetting) GetVerified ¶ added in v0.4.4
func (t *CreateTFASetting_CreateTFASetting_TfaSetting) GetVerified() bool
type CreateTemplate ¶
type CreateTemplate struct {
CreateTemplate CreateTemplate_CreateTemplate "json:\"createTemplate\" graphql:\"createTemplate\""
}
func (*CreateTemplate) GetCreateTemplate ¶
func (t *CreateTemplate) GetCreateTemplate() *CreateTemplate_CreateTemplate
type CreateTemplateInput ¶
type CreateTemplateInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// the name of the template
Name string `json:"name"`
// the type of the template, either a provided template or an implementation (document)
Type *enums.DocumentType `json:"type,omitempty"`
// the description of the template
Description *string `json:"description,omitempty"`
// the jsonschema object of the template
Jsonconfig json.RawMessage `json:"jsonconfig"`
// the uischema for the template to render in the UI
Uischema json.RawMessage `json:"uischema,omitempty"`
OwnerID string `json:"ownerID"`
DocumentIDs []string `json:"documentIDs,omitempty"`
}
CreateTemplateInput is used for create Template object. Input was generated by ent.
type CreateTemplate_CreateTemplate ¶
type CreateTemplate_CreateTemplate struct {
Template CreateTemplate_CreateTemplate_Template "json:\"template\" graphql:\"template\""
}
func (*CreateTemplate_CreateTemplate) GetTemplate ¶
func (t *CreateTemplate_CreateTemplate) GetTemplate() *CreateTemplate_CreateTemplate_Template
type CreateTemplate_CreateTemplate_Template ¶
type CreateTemplate_CreateTemplate_Template struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
Name string "json:\"name\" graphql:\"name\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
Jsonconfig json.RawMessage "json:\"jsonconfig\" graphql:\"jsonconfig\""
Uischema json.RawMessage "json:\"uischema,omitempty\" graphql:\"uischema\""
Owner CreateTemplate_CreateTemplate_Template_Owner "json:\"owner\" graphql:\"owner\""
}
func (*CreateTemplate_CreateTemplate_Template) GetCreatedAt ¶
func (t *CreateTemplate_CreateTemplate_Template) GetCreatedAt() *time.Time
func (*CreateTemplate_CreateTemplate_Template) GetCreatedBy ¶
func (t *CreateTemplate_CreateTemplate_Template) GetCreatedBy() *string
func (*CreateTemplate_CreateTemplate_Template) GetDeletedAt ¶
func (t *CreateTemplate_CreateTemplate_Template) GetDeletedAt() *time.Time
func (*CreateTemplate_CreateTemplate_Template) GetDeletedBy ¶
func (t *CreateTemplate_CreateTemplate_Template) GetDeletedBy() *string
func (*CreateTemplate_CreateTemplate_Template) GetDescription ¶
func (t *CreateTemplate_CreateTemplate_Template) GetDescription() *string
func (*CreateTemplate_CreateTemplate_Template) GetID ¶
func (t *CreateTemplate_CreateTemplate_Template) GetID() string
func (*CreateTemplate_CreateTemplate_Template) GetJsonconfig ¶
func (t *CreateTemplate_CreateTemplate_Template) GetJsonconfig() *json.RawMessage
func (*CreateTemplate_CreateTemplate_Template) GetName ¶
func (t *CreateTemplate_CreateTemplate_Template) GetName() string
func (*CreateTemplate_CreateTemplate_Template) GetOwner ¶
func (t *CreateTemplate_CreateTemplate_Template) GetOwner() *CreateTemplate_CreateTemplate_Template_Owner
func (*CreateTemplate_CreateTemplate_Template) GetUischema ¶ added in v0.4.4
func (t *CreateTemplate_CreateTemplate_Template) GetUischema() *json.RawMessage
func (*CreateTemplate_CreateTemplate_Template) GetUpdatedAt ¶
func (t *CreateTemplate_CreateTemplate_Template) GetUpdatedAt() *time.Time
func (*CreateTemplate_CreateTemplate_Template) GetUpdatedBy ¶
func (t *CreateTemplate_CreateTemplate_Template) GetUpdatedBy() *string
type CreateTemplate_CreateTemplate_Template_Owner ¶
type CreateTemplate_CreateTemplate_Template_Owner struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*CreateTemplate_CreateTemplate_Template_Owner) GetID ¶
func (t *CreateTemplate_CreateTemplate_Template_Owner) GetID() string
type CreateUser ¶
type CreateUser struct {
CreateUser CreateUser_CreateUser "json:\"createUser\" graphql:\"createUser\""
}
func (*CreateUser) GetCreateUser ¶
func (t *CreateUser) GetCreateUser() *CreateUser_CreateUser
type CreateUserInput ¶
type CreateUserInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
Email string `json:"email"`
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
// The user's displayed 'friendly' name
DisplayName string `json:"displayName"`
// URL of the user's remote avatar
AvatarRemoteURL *string `json:"avatarRemoteURL,omitempty"`
// The user's local avatar file
AvatarLocalFile *string `json:"avatarLocalFile,omitempty"`
// The time the user's (local) avatar was last updated
AvatarUpdatedAt *time.Time `json:"avatarUpdatedAt,omitempty"`
// the time the user was last seen
LastSeen *time.Time `json:"lastSeen,omitempty"`
// user password hash
Password *string `json:"password,omitempty"`
// the Subject of the user JWT
Sub *string `json:"sub,omitempty"`
// auth provider used to register the account
AuthProvider *enums.AuthProvider `json:"authProvider,omitempty"`
PersonalAccessTokenIDs []string `json:"personalAccessTokenIDs,omitempty"`
TfaSettingIDs []string `json:"tfaSettingIDs,omitempty"`
SettingID string `json:"settingID"`
EmailVerificationTokenIDs []string `json:"emailVerificationTokenIDs,omitempty"`
PasswordResetTokenIDs []string `json:"passwordResetTokenIDs,omitempty"`
GroupIDs []string `json:"groupIDs,omitempty"`
OrganizationIDs []string `json:"organizationIDs,omitempty"`
WebauthnIDs []string `json:"webauthnIDs,omitempty"`
}
CreateUserInput is used for create User object. Input was generated by ent.
type CreateUserSettingInput ¶
type CreateUserSettingInput struct {
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
// user account is locked if unconfirmed or explicitly locked
Locked *bool `json:"locked,omitempty"`
// The time notifications regarding the user were silenced
SilencedAt *time.Time `json:"silencedAt,omitempty"`
// The time the user was suspended
SuspendedAt *time.Time `json:"suspendedAt,omitempty"`
Status *enums.UserStatus `json:"status,omitempty"`
EmailConfirmed *bool `json:"emailConfirmed,omitempty"`
// tags associated with the user
Tags []string `json:"tags,omitempty"`
// specifies a user may complete authentication by verifying a WebAuthn capable device
IsWebauthnAllowed *bool `json:"isWebauthnAllowed,omitempty"`
// whether the user has two factor authentication enabled
IsTfaEnabled *bool `json:"isTfaEnabled,omitempty"`
UserID *string `json:"userID,omitempty"`
DefaultOrgID *string `json:"defaultOrgID,omitempty"`
}
CreateUserSettingInput is used for create UserSetting object. Input was generated by ent.
type CreateUser_CreateUser ¶
type CreateUser_CreateUser struct {
User CreateUser_CreateUser_User "json:\"user\" graphql:\"user\""
}
func (*CreateUser_CreateUser) GetUser ¶
func (t *CreateUser_CreateUser) GetUser() *CreateUser_CreateUser_User
type CreateUser_CreateUser_User ¶
type CreateUser_CreateUser_User struct {
ID string "json:\"id\" graphql:\"id\""
Email string "json:\"email\" graphql:\"email\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
AvatarRemoteURL *string "json:\"avatarRemoteURL,omitempty\" graphql:\"avatarRemoteURL\""
AvatarLocalFile *string "json:\"avatarLocalFile,omitempty\" graphql:\"avatarLocalFile\""
Sub *string "json:\"sub,omitempty\" graphql:\"sub\""
AuthProvider enums.AuthProvider "json:\"authProvider\" graphql:\"authProvider\""
OrgMemberships []*CreateUser_CreateUser_User_OrgMemberships "json:\"orgMemberships,omitempty\" graphql:\"orgMemberships\""
GroupMemberships []*CreateUser_CreateUser_User_GroupMemberships "json:\"groupMemberships,omitempty\" graphql:\"groupMemberships\""
Setting CreateUser_CreateUser_User_Setting "json:\"setting\" graphql:\"setting\""
}
func (*CreateUser_CreateUser_User) GetAuthProvider ¶
func (t *CreateUser_CreateUser_User) GetAuthProvider() *enums.AuthProvider
func (*CreateUser_CreateUser_User) GetAvatarLocalFile ¶
func (t *CreateUser_CreateUser_User) GetAvatarLocalFile() *string
func (*CreateUser_CreateUser_User) GetAvatarRemoteURL ¶
func (t *CreateUser_CreateUser_User) GetAvatarRemoteURL() *string
func (*CreateUser_CreateUser_User) GetDisplayName ¶
func (t *CreateUser_CreateUser_User) GetDisplayName() string
func (*CreateUser_CreateUser_User) GetEmail ¶
func (t *CreateUser_CreateUser_User) GetEmail() string
func (*CreateUser_CreateUser_User) GetFirstName ¶
func (t *CreateUser_CreateUser_User) GetFirstName() string
func (*CreateUser_CreateUser_User) GetGroupMemberships ¶
func (t *CreateUser_CreateUser_User) GetGroupMemberships() []*CreateUser_CreateUser_User_GroupMemberships
func (*CreateUser_CreateUser_User) GetID ¶
func (t *CreateUser_CreateUser_User) GetID() string
func (*CreateUser_CreateUser_User) GetLastName ¶
func (t *CreateUser_CreateUser_User) GetLastName() string
func (*CreateUser_CreateUser_User) GetOrgMemberships ¶
func (t *CreateUser_CreateUser_User) GetOrgMemberships() []*CreateUser_CreateUser_User_OrgMemberships
func (*CreateUser_CreateUser_User) GetSetting ¶
func (t *CreateUser_CreateUser_User) GetSetting() *CreateUser_CreateUser_User_Setting
func (*CreateUser_CreateUser_User) GetSub ¶
func (t *CreateUser_CreateUser_User) GetSub() *string
type CreateUser_CreateUser_User_GroupMemberships ¶
type CreateUser_CreateUser_User_GroupMemberships struct {
ID string "json:\"id\" graphql:\"id\""
GroupID string "json:\"groupID\" graphql:\"groupID\""
}
func (*CreateUser_CreateUser_User_GroupMemberships) GetGroupID ¶
func (t *CreateUser_CreateUser_User_GroupMemberships) GetGroupID() string
func (*CreateUser_CreateUser_User_GroupMemberships) GetID ¶
func (t *CreateUser_CreateUser_User_GroupMemberships) GetID() string
type CreateUser_CreateUser_User_OrgMemberships ¶
type CreateUser_CreateUser_User_OrgMemberships struct {
ID string "json:\"id\" graphql:\"id\""
OrganizationID string "json:\"organizationID\" graphql:\"organizationID\""
}
func (*CreateUser_CreateUser_User_OrgMemberships) GetID ¶
func (t *CreateUser_CreateUser_User_OrgMemberships) GetID() string
func (*CreateUser_CreateUser_User_OrgMemberships) GetOrganizationID ¶
func (t *CreateUser_CreateUser_User_OrgMemberships) GetOrganizationID() string
type CreateUser_CreateUser_User_Setting ¶
type CreateUser_CreateUser_User_Setting struct {
EmailConfirmed bool "json:\"emailConfirmed\" graphql:\"emailConfirmed\""
DefaultOrg *CreateUser_CreateUser_User_Setting_DefaultOrg "json:\"defaultOrg,omitempty\" graphql:\"defaultOrg\""
Locked bool "json:\"locked\" graphql:\"locked\""
Status enums.UserStatus "json:\"status\" graphql:\"status\""
Tags []string "json:\"tags\" graphql:\"tags\""
SuspendedAt *time.Time "json:\"suspendedAt,omitempty\" graphql:\"suspendedAt\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
SilencedAt *time.Time "json:\"silencedAt,omitempty\" graphql:\"silencedAt\""
}
func (*CreateUser_CreateUser_User_Setting) GetCreatedAt ¶
func (t *CreateUser_CreateUser_User_Setting) GetCreatedAt() *time.Time
func (*CreateUser_CreateUser_User_Setting) GetCreatedBy ¶
func (t *CreateUser_CreateUser_User_Setting) GetCreatedBy() *string
func (*CreateUser_CreateUser_User_Setting) GetDefaultOrg ¶
func (t *CreateUser_CreateUser_User_Setting) GetDefaultOrg() *CreateUser_CreateUser_User_Setting_DefaultOrg
func (*CreateUser_CreateUser_User_Setting) GetEmailConfirmed ¶
func (t *CreateUser_CreateUser_User_Setting) GetEmailConfirmed() bool
func (*CreateUser_CreateUser_User_Setting) GetLocked ¶
func (t *CreateUser_CreateUser_User_Setting) GetLocked() bool
func (*CreateUser_CreateUser_User_Setting) GetSilencedAt ¶
func (t *CreateUser_CreateUser_User_Setting) GetSilencedAt() *time.Time
func (*CreateUser_CreateUser_User_Setting) GetStatus ¶
func (t *CreateUser_CreateUser_User_Setting) GetStatus() *enums.UserStatus
func (*CreateUser_CreateUser_User_Setting) GetSuspendedAt ¶
func (t *CreateUser_CreateUser_User_Setting) GetSuspendedAt() *time.Time
func (*CreateUser_CreateUser_User_Setting) GetTags ¶
func (t *CreateUser_CreateUser_User_Setting) GetTags() []string
func (*CreateUser_CreateUser_User_Setting) GetUpdatedAt ¶
func (t *CreateUser_CreateUser_User_Setting) GetUpdatedAt() *time.Time
func (*CreateUser_CreateUser_User_Setting) GetUpdatedBy ¶
func (t *CreateUser_CreateUser_User_Setting) GetUpdatedBy() *string
type CreateUser_CreateUser_User_Setting_DefaultOrg ¶
type CreateUser_CreateUser_User_Setting_DefaultOrg struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
}
func (*CreateUser_CreateUser_User_Setting_DefaultOrg) GetID ¶
func (t *CreateUser_CreateUser_User_Setting_DefaultOrg) GetID() string
func (*CreateUser_CreateUser_User_Setting_DefaultOrg) GetName ¶
func (t *CreateUser_CreateUser_User_Setting_DefaultOrg) GetName() string
func (*CreateUser_CreateUser_User_Setting_DefaultOrg) GetPersonalOrg ¶
func (t *CreateUser_CreateUser_User_Setting_DefaultOrg) GetPersonalOrg() *bool
type DatumClient ¶
type DatumClient interface {
GetDocumentData(ctx context.Context, documentDataID string, interceptors ...clientv2.RequestInterceptor) (*GetDocumentData, error)
CreateDocumentData(ctx context.Context, input CreateDocumentDataInput, interceptors ...clientv2.RequestInterceptor) (*CreateDocumentData, error)
UpdateDocumentData(ctx context.Context, updateDocumentDataID string, input UpdateDocumentDataInput, interceptors ...clientv2.RequestInterceptor) (*UpdateDocumentData, error)
DeleteDocumentData(ctx context.Context, deleteDocumentDataID string, interceptors ...clientv2.RequestInterceptor) (*DeleteDocumentData, error)
GetGroupByID(ctx context.Context, groupID string, interceptors ...clientv2.RequestInterceptor) (*GetGroupByID, error)
GroupsWhere(ctx context.Context, where *GroupWhereInput, interceptors ...clientv2.RequestInterceptor) (*GroupsWhere, error)
GetAllGroups(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllGroups, error)
CreateGroup(ctx context.Context, input CreateGroupInput, interceptors ...clientv2.RequestInterceptor) (*CreateGroup, error)
UpdateGroup(ctx context.Context, updateGroupID string, input UpdateGroupInput, interceptors ...clientv2.RequestInterceptor) (*UpdateGroup, error)
DeleteGroup(ctx context.Context, deleteGroupID string, interceptors ...clientv2.RequestInterceptor) (*DeleteGroup, error)
GetGroupMembersByGroupID(ctx context.Context, where *GroupMembershipWhereInput, interceptors ...clientv2.RequestInterceptor) (*GetGroupMembersByGroupID, error)
AddUserToGroupWithRole(ctx context.Context, input CreateGroupMembershipInput, interceptors ...clientv2.RequestInterceptor) (*AddUserToGroupWithRole, error)
UpdateUserRoleInGroup(ctx context.Context, updateGroupMemberID string, input UpdateGroupMembershipInput, interceptors ...clientv2.RequestInterceptor) (*UpdateUserRoleInGroup, error)
RemoveUserFromGroup(ctx context.Context, deleteGroupMembershipID string, interceptors ...clientv2.RequestInterceptor) (*RemoveUserFromGroup, error)
GetGroupSettingByID(ctx context.Context, groupSettingID string, interceptors ...clientv2.RequestInterceptor) (*GetGroupSettingByID, error)
GetGroupSettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetGroupSettings, error)
GetGroupSettingWhere(ctx context.Context, where GroupSettingWhereInput, interceptors ...clientv2.RequestInterceptor) (*GetGroupSettingWhere, error)
UpdateGroupSetting(ctx context.Context, updateGroupSettingID string, input UpdateGroupSettingInput, interceptors ...clientv2.RequestInterceptor) (*UpdateGroupSetting, error)
CreateInvite(ctx context.Context, input CreateInviteInput, interceptors ...clientv2.RequestInterceptor) (*CreateInvite, error)
DeleteInvite(ctx context.Context, deleteInviteID string, interceptors ...clientv2.RequestInterceptor) (*DeleteInvite, error)
GetInvite(ctx context.Context, inviteID string, interceptors ...clientv2.RequestInterceptor) (*GetInvite, error)
InvitesByOrgID(ctx context.Context, where *InviteWhereInput, interceptors ...clientv2.RequestInterceptor) (*InvitesByOrgID, error)
GetOrganizationByID(ctx context.Context, organizationID string, interceptors ...clientv2.RequestInterceptor) (*GetOrganizationByID, error)
GetAllOrganizations(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllOrganizations, error)
OrganizationsWhere(ctx context.Context, where *OrganizationWhereInput, interceptors ...clientv2.RequestInterceptor) (*OrganizationsWhere, error)
CreateOrganization(ctx context.Context, input CreateOrganizationInput, interceptors ...clientv2.RequestInterceptor) (*CreateOrganization, error)
UpdateOrganization(ctx context.Context, updateOrganizationID string, input UpdateOrganizationInput, interceptors ...clientv2.RequestInterceptor) (*UpdateOrganization, error)
DeleteOrganization(ctx context.Context, deleteOrganizationID string, interceptors ...clientv2.RequestInterceptor) (*DeleteOrganization, error)
GetOrganizationSettingByID(ctx context.Context, organizationSettingID string, interceptors ...clientv2.RequestInterceptor) (*GetOrganizationSettingByID, error)
GetOrganizationSettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetOrganizationSettings, error)
GetOrganizationSettingWhere(ctx context.Context, where OrganizationSettingWhereInput, interceptors ...clientv2.RequestInterceptor) (*GetOrganizationSettingWhere, error)
UpdateOrganizationSetting(ctx context.Context, updateOrganizationSettingID string, input UpdateOrganizationSettingInput, interceptors ...clientv2.RequestInterceptor) (*UpdateOrganizationSetting, error)
GetOrgMembersByOrgID(ctx context.Context, where *OrgMembershipWhereInput, interceptors ...clientv2.RequestInterceptor) (*GetOrgMembersByOrgID, error)
AddUserToOrgWithRole(ctx context.Context, input CreateOrgMembershipInput, interceptors ...clientv2.RequestInterceptor) (*AddUserToOrgWithRole, error)
UpdateUserRoleInOrg(ctx context.Context, updateOrgMemberID string, input UpdateOrgMembershipInput, interceptors ...clientv2.RequestInterceptor) (*UpdateUserRoleInOrg, error)
RemoveUserFromOrg(ctx context.Context, deleteOrgMembershipID string, interceptors ...clientv2.RequestInterceptor) (*RemoveUserFromOrg, error)
CreatePersonalAccessToken(ctx context.Context, input CreatePersonalAccessTokenInput, interceptors ...clientv2.RequestInterceptor) (*CreatePersonalAccessToken, error)
UpdatePersonalAccessToken(ctx context.Context, updatePersonalAccessTokenID string, input UpdatePersonalAccessTokenInput, interceptors ...clientv2.RequestInterceptor) (*UpdatePersonalAccessToken, error)
GetAllPersonalAccessTokens(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllPersonalAccessTokens, error)
GetPersonalAccessTokenByID(ctx context.Context, personalAccessTokenID string, interceptors ...clientv2.RequestInterceptor) (*GetPersonalAccessTokenByID, error)
DeletePersonalAccessToken(ctx context.Context, deletePersonalAccessTokenID string, interceptors ...clientv2.RequestInterceptor) (*DeletePersonalAccessToken, error)
Subscribers(ctx context.Context, where *SubscriberWhereInput, interceptors ...clientv2.RequestInterceptor) (*Subscribers, error)
CreateTemplate(ctx context.Context, input CreateTemplateInput, interceptors ...clientv2.RequestInterceptor) (*CreateTemplate, error)
UpdateTemplate(ctx context.Context, updateTemplateID string, input UpdateTemplateInput, interceptors ...clientv2.RequestInterceptor) (*UpdateTemplate, error)
GetAllTemplates(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllTemplates, error)
GetTemplate(ctx context.Context, getTemplateID string, interceptors ...clientv2.RequestInterceptor) (*GetTemplate, error)
GetTFASetting(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetTFASetting, error)
GetTFASettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetTFASettings, error)
CreateTFASetting(ctx context.Context, input CreateTFASettingInput, interceptors ...clientv2.RequestInterceptor) (*CreateTFASetting, error)
UpdateTFASetting(ctx context.Context, input UpdateTFASettingInput, interceptors ...clientv2.RequestInterceptor) (*UpdateTFASetting, error)
GetUserByID(ctx context.Context, userID string, interceptors ...clientv2.RequestInterceptor) (*GetUserByID, error)
GetUserByIDWithOrgs(ctx context.Context, userID string, interceptors ...clientv2.RequestInterceptor) (*GetUserByIDWithOrgs, error)
GetAllUsers(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetAllUsers, error)
CreateUser(ctx context.Context, input CreateUserInput, interceptors ...clientv2.RequestInterceptor) (*CreateUser, error)
UpdateUser(ctx context.Context, updateUserID string, input UpdateUserInput, interceptors ...clientv2.RequestInterceptor) (*UpdateUser, error)
DeleteUser(ctx context.Context, deleteUserID string, interceptors ...clientv2.RequestInterceptor) (*DeleteUser, error)
GetUserSettingByID(ctx context.Context, userSettingID string, interceptors ...clientv2.RequestInterceptor) (*GetUserSettingByID, error)
GetUserSettings(ctx context.Context, interceptors ...clientv2.RequestInterceptor) (*GetUserSettings, error)
GetUserSettingWhere(ctx context.Context, where UserSettingWhereInput, interceptors ...clientv2.RequestInterceptor) (*GetUserSettingWhere, error)
UpdateUserSetting(ctx context.Context, updateUserSettingID string, input UpdateUserSettingInput, interceptors ...clientv2.RequestInterceptor) (*UpdateUserSetting, error)
}
func NewClient ¶
func NewClient(cli *http.Client, baseURL string, options *clientv2.Options, interceptors ...clientv2.RequestInterceptor) DatumClient
type DeleteDocumentData ¶ added in v0.4.4
type DeleteDocumentData struct {
DeleteDocumentData DeleteDocumentData_DeleteDocumentData "json:\"deleteDocumentData\" graphql:\"deleteDocumentData\""
}
func (*DeleteDocumentData) GetDeleteDocumentData ¶ added in v0.4.4
func (t *DeleteDocumentData) GetDeleteDocumentData() *DeleteDocumentData_DeleteDocumentData
type DeleteDocumentData_DeleteDocumentData ¶ added in v0.4.4
type DeleteDocumentData_DeleteDocumentData struct {
DeletedID string "json:\"deletedID\" graphql:\"deletedID\""
}
func (*DeleteDocumentData_DeleteDocumentData) GetDeletedID ¶ added in v0.4.4
func (t *DeleteDocumentData_DeleteDocumentData) GetDeletedID() string
type DeleteGroup ¶
type DeleteGroup struct {
DeleteGroup DeleteGroup_DeleteGroup "json:\"deleteGroup\" graphql:\"deleteGroup\""
}
func (*DeleteGroup) GetDeleteGroup ¶
func (t *DeleteGroup) GetDeleteGroup() *DeleteGroup_DeleteGroup
type DeleteGroup_DeleteGroup ¶
type DeleteGroup_DeleteGroup struct {
DeletedID string "json:\"deletedID\" graphql:\"deletedID\""
}
func (*DeleteGroup_DeleteGroup) GetDeletedID ¶
func (t *DeleteGroup_DeleteGroup) GetDeletedID() string
type DeleteInvite ¶
type DeleteInvite struct {
DeleteInvite DeleteInvite_DeleteInvite "json:\"deleteInvite\" graphql:\"deleteInvite\""
}
func (*DeleteInvite) GetDeleteInvite ¶
func (t *DeleteInvite) GetDeleteInvite() *DeleteInvite_DeleteInvite
type DeleteInvite_DeleteInvite ¶
type DeleteInvite_DeleteInvite struct {
DeletedID string "json:\"deletedID\" graphql:\"deletedID\""
}
func (*DeleteInvite_DeleteInvite) GetDeletedID ¶
func (t *DeleteInvite_DeleteInvite) GetDeletedID() string
type DeleteOrganization ¶
type DeleteOrganization struct {
DeleteOrganization DeleteOrganization_DeleteOrganization "json:\"deleteOrganization\" graphql:\"deleteOrganization\""
}
func (*DeleteOrganization) GetDeleteOrganization ¶
func (t *DeleteOrganization) GetDeleteOrganization() *DeleteOrganization_DeleteOrganization
type DeleteOrganization_DeleteOrganization ¶
type DeleteOrganization_DeleteOrganization struct {
DeletedID string "json:\"deletedID\" graphql:\"deletedID\""
}
func (*DeleteOrganization_DeleteOrganization) GetDeletedID ¶
func (t *DeleteOrganization_DeleteOrganization) GetDeletedID() string
type DeletePersonalAccessToken ¶
type DeletePersonalAccessToken struct {
DeletePersonalAccessToken DeletePersonalAccessToken_DeletePersonalAccessToken "json:\"deletePersonalAccessToken\" graphql:\"deletePersonalAccessToken\""
}
func (*DeletePersonalAccessToken) GetDeletePersonalAccessToken ¶
func (t *DeletePersonalAccessToken) GetDeletePersonalAccessToken() *DeletePersonalAccessToken_DeletePersonalAccessToken
type DeletePersonalAccessToken_DeletePersonalAccessToken ¶
type DeletePersonalAccessToken_DeletePersonalAccessToken struct {
DeletedID string "json:\"deletedID\" graphql:\"deletedID\""
}
func (*DeletePersonalAccessToken_DeletePersonalAccessToken) GetDeletedID ¶
func (t *DeletePersonalAccessToken_DeletePersonalAccessToken) GetDeletedID() string
type DeleteUser ¶
type DeleteUser struct {
DeleteUser DeleteUser_DeleteUser "json:\"deleteUser\" graphql:\"deleteUser\""
}
func (*DeleteUser) GetDeleteUser ¶
func (t *DeleteUser) GetDeleteUser() *DeleteUser_DeleteUser
type DeleteUser_DeleteUser ¶
type DeleteUser_DeleteUser struct {
DeletedID string "json:\"deletedID\" graphql:\"deletedID\""
}
func (*DeleteUser_DeleteUser) GetDeletedID ¶
func (t *DeleteUser_DeleteUser) GetDeletedID() string
type DocumentData ¶ added in v0.4.4
type DocumentData struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
// the template id of the document
TemplateID string `json:"templateID"`
// the json data of the document
Data json.RawMessage `json:"data"`
Template *Template `json:"template"`
}
func (DocumentData) IsNode ¶ added in v0.4.4
func (DocumentData) IsNode()
type DocumentDataConnection ¶ added in v0.4.4
type DocumentDataConnection struct {
// A list of edges.
Edges []*DocumentDataEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type DocumentDataCreatePayload ¶ added in v0.4.4
type DocumentDataCreatePayload struct {
// Created documentData
DocumentData *DocumentData `json:"documentData"`
}
Return response for createDocumentData mutation
type DocumentDataDeletePayload ¶ added in v0.4.4
type DocumentDataDeletePayload struct {
// Deleted documentData ID
DeletedID string `json:"deletedID"`
}
Return response for deleteDocumentData mutation
type DocumentDataEdge ¶ added in v0.4.4
type DocumentDataEdge struct {
// The item at the end of the edge.
Node *DocumentData `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type DocumentDataUpdatePayload ¶ added in v0.4.4
type DocumentDataUpdatePayload struct {
// Updated documentData
DocumentData *DocumentData `json:"documentData"`
}
Return response for updateDocumentData mutation
type DocumentDataWhereInput ¶ added in v0.4.4
type DocumentDataWhereInput struct {
Not *DocumentDataWhereInput `json:"not,omitempty"`
And []*DocumentDataWhereInput `json:"and,omitempty"`
Or []*DocumentDataWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// template_id field predicates
TemplateID *string `json:"templateID,omitempty"`
TemplateIDNeq *string `json:"templateIDNEQ,omitempty"`
TemplateIDIn []string `json:"templateIDIn,omitempty"`
TemplateIDNotIn []string `json:"templateIDNotIn,omitempty"`
TemplateIDGt *string `json:"templateIDGT,omitempty"`
TemplateIDGte *string `json:"templateIDGTE,omitempty"`
TemplateIDLt *string `json:"templateIDLT,omitempty"`
TemplateIDLte *string `json:"templateIDLTE,omitempty"`
TemplateIDContains *string `json:"templateIDContains,omitempty"`
TemplateIDHasPrefix *string `json:"templateIDHasPrefix,omitempty"`
TemplateIDHasSuffix *string `json:"templateIDHasSuffix,omitempty"`
TemplateIDEqualFold *string `json:"templateIDEqualFold,omitempty"`
TemplateIDContainsFold *string `json:"templateIDContainsFold,omitempty"`
// template edge predicates
HasTemplate *bool `json:"hasTemplate,omitempty"`
HasTemplateWith []*TemplateWhereInput `json:"hasTemplateWith,omitempty"`
}
DocumentDataWhereInput is used for filtering DocumentData objects. Input was generated by ent.
type Entitlement ¶
type Entitlement struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
Tier enums.Tier `json:"tier"`
// used to store references to external systems, e.g. Stripe
ExternalCustomerID *string `json:"externalCustomerID,omitempty"`
// used to store references to external systems, e.g. Stripe
ExternalSubscriptionID *string `json:"externalSubscriptionID,omitempty"`
// whether or not the customers entitlement expires - expires_at will show the time
Expires bool `json:"expires"`
// the time at which a customer's entitlement will expire, e.g. they've cancelled but paid through the end of the month
ExpiresAt *time.Time `json:"expiresAt,omitempty"`
// whether or not the customer has cancelled their entitlement - usually used in conjunction with expires and expires at
Cancelled bool `json:"cancelled"`
Owner *Organization `json:"owner"`
}
func (Entitlement) IsNode ¶
func (Entitlement) IsNode()
type EntitlementConnection ¶
type EntitlementConnection struct {
// A list of edges.
Edges []*EntitlementEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type EntitlementCreatePayload ¶
type EntitlementCreatePayload struct {
// Created entitlement
Entitlement *Entitlement `json:"entitlement"`
}
Return response for createEntitlement mutation
type EntitlementDeletePayload ¶
type EntitlementDeletePayload struct {
// Deleted entitlement ID
DeletedID string `json:"deletedID"`
}
Return response for deleteEntitlement mutation
type EntitlementEdge ¶
type EntitlementEdge struct {
// The item at the end of the edge.
Node *Entitlement `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type EntitlementUpdatePayload ¶
type EntitlementUpdatePayload struct {
// Updated entitlement
Entitlement *Entitlement `json:"entitlement"`
}
Return response for updateEntitlement mutation
type EntitlementWhereInput ¶
type EntitlementWhereInput struct {
Not *EntitlementWhereInput `json:"not,omitempty"`
And []*EntitlementWhereInput `json:"and,omitempty"`
Or []*EntitlementWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// tier field predicates
Tier *enums.Tier `json:"tier,omitempty"`
TierNeq *enums.Tier `json:"tierNEQ,omitempty"`
TierIn []enums.Tier `json:"tierIn,omitempty"`
TierNotIn []enums.Tier `json:"tierNotIn,omitempty"`
// external_customer_id field predicates
ExternalCustomerID *string `json:"externalCustomerID,omitempty"`
ExternalCustomerIDNeq *string `json:"externalCustomerIDNEQ,omitempty"`
ExternalCustomerIDIn []string `json:"externalCustomerIDIn,omitempty"`
ExternalCustomerIDNotIn []string `json:"externalCustomerIDNotIn,omitempty"`
ExternalCustomerIDGt *string `json:"externalCustomerIDGT,omitempty"`
ExternalCustomerIDGte *string `json:"externalCustomerIDGTE,omitempty"`
ExternalCustomerIDLt *string `json:"externalCustomerIDLT,omitempty"`
ExternalCustomerIDLte *string `json:"externalCustomerIDLTE,omitempty"`
ExternalCustomerIDContains *string `json:"externalCustomerIDContains,omitempty"`
ExternalCustomerIDHasPrefix *string `json:"externalCustomerIDHasPrefix,omitempty"`
ExternalCustomerIDHasSuffix *string `json:"externalCustomerIDHasSuffix,omitempty"`
ExternalCustomerIDIsNil *bool `json:"externalCustomerIDIsNil,omitempty"`
ExternalCustomerIDNotNil *bool `json:"externalCustomerIDNotNil,omitempty"`
ExternalCustomerIDEqualFold *string `json:"externalCustomerIDEqualFold,omitempty"`
ExternalCustomerIDContainsFold *string `json:"externalCustomerIDContainsFold,omitempty"`
// external_subscription_id field predicates
ExternalSubscriptionID *string `json:"externalSubscriptionID,omitempty"`
ExternalSubscriptionIDNeq *string `json:"externalSubscriptionIDNEQ,omitempty"`
ExternalSubscriptionIDIn []string `json:"externalSubscriptionIDIn,omitempty"`
ExternalSubscriptionIDNotIn []string `json:"externalSubscriptionIDNotIn,omitempty"`
ExternalSubscriptionIDGt *string `json:"externalSubscriptionIDGT,omitempty"`
ExternalSubscriptionIDGte *string `json:"externalSubscriptionIDGTE,omitempty"`
ExternalSubscriptionIDLt *string `json:"externalSubscriptionIDLT,omitempty"`
ExternalSubscriptionIDLte *string `json:"externalSubscriptionIDLTE,omitempty"`
ExternalSubscriptionIDContains *string `json:"externalSubscriptionIDContains,omitempty"`
ExternalSubscriptionIDHasPrefix *string `json:"externalSubscriptionIDHasPrefix,omitempty"`
ExternalSubscriptionIDHasSuffix *string `json:"externalSubscriptionIDHasSuffix,omitempty"`
ExternalSubscriptionIDIsNil *bool `json:"externalSubscriptionIDIsNil,omitempty"`
ExternalSubscriptionIDNotNil *bool `json:"externalSubscriptionIDNotNil,omitempty"`
ExternalSubscriptionIDEqualFold *string `json:"externalSubscriptionIDEqualFold,omitempty"`
ExternalSubscriptionIDContainsFold *string `json:"externalSubscriptionIDContainsFold,omitempty"`
// expires field predicates
Expires *bool `json:"expires,omitempty"`
ExpiresNeq *bool `json:"expiresNEQ,omitempty"`
// expires_at field predicates
ExpiresAt *time.Time `json:"expiresAt,omitempty"`
ExpiresAtNeq *time.Time `json:"expiresAtNEQ,omitempty"`
ExpiresAtIn []*time.Time `json:"expiresAtIn,omitempty"`
ExpiresAtNotIn []*time.Time `json:"expiresAtNotIn,omitempty"`
ExpiresAtGt *time.Time `json:"expiresAtGT,omitempty"`
ExpiresAtGte *time.Time `json:"expiresAtGTE,omitempty"`
ExpiresAtLt *time.Time `json:"expiresAtLT,omitempty"`
ExpiresAtLte *time.Time `json:"expiresAtLTE,omitempty"`
ExpiresAtIsNil *bool `json:"expiresAtIsNil,omitempty"`
ExpiresAtNotNil *bool `json:"expiresAtNotNil,omitempty"`
// cancelled field predicates
Cancelled *bool `json:"cancelled,omitempty"`
CancelledNeq *bool `json:"cancelledNEQ,omitempty"`
// owner edge predicates
HasOwner *bool `json:"hasOwner,omitempty"`
HasOwnerWith []*OrganizationWhereInput `json:"hasOwnerWith,omitempty"`
}
EntitlementWhereInput is used for filtering Entitlement objects. Input was generated by ent.
type GetAllGroups ¶
type GetAllGroups struct {
Groups GetAllGroups_Groups "json:\"groups\" graphql:\"groups\""
}
func (*GetAllGroups) GetGroups ¶
func (t *GetAllGroups) GetGroups() *GetAllGroups_Groups
type GetAllGroups_Groups ¶
type GetAllGroups_Groups struct {
Edges []*GetAllGroups_Groups_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetAllGroups_Groups) GetEdges ¶
func (t *GetAllGroups_Groups) GetEdges() []*GetAllGroups_Groups_Edges
type GetAllGroups_Groups_Edges ¶
type GetAllGroups_Groups_Edges struct {
Node *GetAllGroups_Groups_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*GetAllGroups_Groups_Edges) GetNode ¶
func (t *GetAllGroups_Groups_Edges) GetNode() *GetAllGroups_Groups_Edges_Node
type GetAllGroups_Groups_Edges_Node ¶
type GetAllGroups_Groups_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Owner GetAllGroups_Groups_Edges_Node_Owner "json:\"owner\" graphql:\"owner\""
LogoURL *string "json:\"logoURL,omitempty\" graphql:\"logoURL\""
Setting GetAllGroups_Groups_Edges_Node_Setting "json:\"setting\" graphql:\"setting\""
Members []*GetAllGroups_Groups_Edges_Node_Members "json:\"members,omitempty\" graphql:\"members\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*GetAllGroups_Groups_Edges_Node) GetCreatedAt ¶
func (t *GetAllGroups_Groups_Edges_Node) GetCreatedAt() *time.Time
func (*GetAllGroups_Groups_Edges_Node) GetCreatedBy ¶
func (t *GetAllGroups_Groups_Edges_Node) GetCreatedBy() *string
func (*GetAllGroups_Groups_Edges_Node) GetDescription ¶
func (t *GetAllGroups_Groups_Edges_Node) GetDescription() *string
func (*GetAllGroups_Groups_Edges_Node) GetDisplayName ¶
func (t *GetAllGroups_Groups_Edges_Node) GetDisplayName() string
func (*GetAllGroups_Groups_Edges_Node) GetID ¶
func (t *GetAllGroups_Groups_Edges_Node) GetID() string
func (*GetAllGroups_Groups_Edges_Node) GetLogoURL ¶
func (t *GetAllGroups_Groups_Edges_Node) GetLogoURL() *string
func (*GetAllGroups_Groups_Edges_Node) GetMembers ¶
func (t *GetAllGroups_Groups_Edges_Node) GetMembers() []*GetAllGroups_Groups_Edges_Node_Members
func (*GetAllGroups_Groups_Edges_Node) GetName ¶
func (t *GetAllGroups_Groups_Edges_Node) GetName() string
func (*GetAllGroups_Groups_Edges_Node) GetOwner ¶
func (t *GetAllGroups_Groups_Edges_Node) GetOwner() *GetAllGroups_Groups_Edges_Node_Owner
func (*GetAllGroups_Groups_Edges_Node) GetSetting ¶
func (t *GetAllGroups_Groups_Edges_Node) GetSetting() *GetAllGroups_Groups_Edges_Node_Setting
func (*GetAllGroups_Groups_Edges_Node) GetUpdatedAt ¶
func (t *GetAllGroups_Groups_Edges_Node) GetUpdatedAt() *time.Time
func (*GetAllGroups_Groups_Edges_Node) GetUpdatedBy ¶
func (t *GetAllGroups_Groups_Edges_Node) GetUpdatedBy() *string
type GetAllGroups_Groups_Edges_Node_Members ¶
type GetAllGroups_Groups_Edges_Node_Members struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
User GetAllGroups_Groups_Edges_Node_Members_User "json:\"user\" graphql:\"user\""
}
func (*GetAllGroups_Groups_Edges_Node_Members) GetID ¶
func (t *GetAllGroups_Groups_Edges_Node_Members) GetID() string
func (*GetAllGroups_Groups_Edges_Node_Members) GetRole ¶
func (t *GetAllGroups_Groups_Edges_Node_Members) GetRole() *enums.Role
func (*GetAllGroups_Groups_Edges_Node_Members) GetUser ¶
func (t *GetAllGroups_Groups_Edges_Node_Members) GetUser() *GetAllGroups_Groups_Edges_Node_Members_User
type GetAllGroups_Groups_Edges_Node_Members_User ¶
type GetAllGroups_Groups_Edges_Node_Members_User struct {
ID string "json:\"id\" graphql:\"id\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
}
func (*GetAllGroups_Groups_Edges_Node_Members_User) GetFirstName ¶
func (t *GetAllGroups_Groups_Edges_Node_Members_User) GetFirstName() string
func (*GetAllGroups_Groups_Edges_Node_Members_User) GetID ¶
func (t *GetAllGroups_Groups_Edges_Node_Members_User) GetID() string
func (*GetAllGroups_Groups_Edges_Node_Members_User) GetLastName ¶
func (t *GetAllGroups_Groups_Edges_Node_Members_User) GetLastName() string
type GetAllGroups_Groups_Edges_Node_Owner ¶
type GetAllGroups_Groups_Edges_Node_Owner struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*GetAllGroups_Groups_Edges_Node_Owner) GetID ¶
func (t *GetAllGroups_Groups_Edges_Node_Owner) GetID() string
type GetAllGroups_Groups_Edges_Node_Setting ¶
type GetAllGroups_Groups_Edges_Node_Setting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Visibility enums.Visibility "json:\"visibility\" graphql:\"visibility\""
JoinPolicy enums.JoinPolicy "json:\"joinPolicy\" graphql:\"joinPolicy\""
SyncToSlack *bool "json:\"syncToSlack,omitempty\" graphql:\"syncToSlack\""
SyncToGithub *bool "json:\"syncToGithub,omitempty\" graphql:\"syncToGithub\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
}
func (*GetAllGroups_Groups_Edges_Node_Setting) GetCreatedAt ¶
func (t *GetAllGroups_Groups_Edges_Node_Setting) GetCreatedAt() *time.Time
func (*GetAllGroups_Groups_Edges_Node_Setting) GetCreatedBy ¶
func (t *GetAllGroups_Groups_Edges_Node_Setting) GetCreatedBy() *string
func (*GetAllGroups_Groups_Edges_Node_Setting) GetID ¶
func (t *GetAllGroups_Groups_Edges_Node_Setting) GetID() string
func (*GetAllGroups_Groups_Edges_Node_Setting) GetJoinPolicy ¶
func (t *GetAllGroups_Groups_Edges_Node_Setting) GetJoinPolicy() *enums.JoinPolicy
func (*GetAllGroups_Groups_Edges_Node_Setting) GetSyncToGithub ¶
func (t *GetAllGroups_Groups_Edges_Node_Setting) GetSyncToGithub() *bool
func (*GetAllGroups_Groups_Edges_Node_Setting) GetSyncToSlack ¶
func (t *GetAllGroups_Groups_Edges_Node_Setting) GetSyncToSlack() *bool
func (*GetAllGroups_Groups_Edges_Node_Setting) GetTags ¶
func (t *GetAllGroups_Groups_Edges_Node_Setting) GetTags() []string
func (*GetAllGroups_Groups_Edges_Node_Setting) GetUpdatedAt ¶
func (t *GetAllGroups_Groups_Edges_Node_Setting) GetUpdatedAt() *time.Time
func (*GetAllGroups_Groups_Edges_Node_Setting) GetUpdatedBy ¶
func (t *GetAllGroups_Groups_Edges_Node_Setting) GetUpdatedBy() *string
func (*GetAllGroups_Groups_Edges_Node_Setting) GetVisibility ¶
func (t *GetAllGroups_Groups_Edges_Node_Setting) GetVisibility() *enums.Visibility
type GetAllOrganizations ¶
type GetAllOrganizations struct {
Organizations GetAllOrganizations_Organizations "json:\"organizations\" graphql:\"organizations\""
}
func (*GetAllOrganizations) GetOrganizations ¶
func (t *GetAllOrganizations) GetOrganizations() *GetAllOrganizations_Organizations
type GetAllOrganizations_Organizations ¶
type GetAllOrganizations_Organizations struct {
Edges []*GetAllOrganizations_Organizations_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetAllOrganizations_Organizations) GetEdges ¶
func (t *GetAllOrganizations_Organizations) GetEdges() []*GetAllOrganizations_Organizations_Edges
type GetAllOrganizations_Organizations_Edges ¶
type GetAllOrganizations_Organizations_Edges struct {
Node *GetAllOrganizations_Organizations_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*GetAllOrganizations_Organizations_Edges) GetNode ¶
func (t *GetAllOrganizations_Organizations_Edges) GetNode() *GetAllOrganizations_Organizations_Edges_Node
type GetAllOrganizations_Organizations_Edges_Node ¶
type GetAllOrganizations_Organizations_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
Parent *GetAllOrganizations_Organizations_Edges_Node_Parent "json:\"parent,omitempty\" graphql:\"parent\""
Children GetAllOrganizations_Organizations_Edges_Node_Children "json:\"children\" graphql:\"children\""
Members []*GetAllOrganizations_Organizations_Edges_Node_Members "json:\"members,omitempty\" graphql:\"members\""
Setting *GetAllOrganizations_Organizations_Edges_Node_Setting "json:\"setting,omitempty\" graphql:\"setting\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
}
func (*GetAllOrganizations_Organizations_Edges_Node) GetChildren ¶
func (t *GetAllOrganizations_Organizations_Edges_Node) GetChildren() *GetAllOrganizations_Organizations_Edges_Node_Children
func (*GetAllOrganizations_Organizations_Edges_Node) GetCreatedAt ¶
func (t *GetAllOrganizations_Organizations_Edges_Node) GetCreatedAt() *time.Time
func (*GetAllOrganizations_Organizations_Edges_Node) GetDescription ¶
func (t *GetAllOrganizations_Organizations_Edges_Node) GetDescription() *string
func (*GetAllOrganizations_Organizations_Edges_Node) GetDisplayName ¶
func (t *GetAllOrganizations_Organizations_Edges_Node) GetDisplayName() string
func (*GetAllOrganizations_Organizations_Edges_Node) GetID ¶
func (t *GetAllOrganizations_Organizations_Edges_Node) GetID() string
func (*GetAllOrganizations_Organizations_Edges_Node) GetMembers ¶
func (t *GetAllOrganizations_Organizations_Edges_Node) GetMembers() []*GetAllOrganizations_Organizations_Edges_Node_Members
func (*GetAllOrganizations_Organizations_Edges_Node) GetName ¶
func (t *GetAllOrganizations_Organizations_Edges_Node) GetName() string
func (*GetAllOrganizations_Organizations_Edges_Node) GetParent ¶
func (t *GetAllOrganizations_Organizations_Edges_Node) GetParent() *GetAllOrganizations_Organizations_Edges_Node_Parent
func (*GetAllOrganizations_Organizations_Edges_Node) GetPersonalOrg ¶
func (t *GetAllOrganizations_Organizations_Edges_Node) GetPersonalOrg() *bool
func (*GetAllOrganizations_Organizations_Edges_Node) GetSetting ¶
func (t *GetAllOrganizations_Organizations_Edges_Node) GetSetting() *GetAllOrganizations_Organizations_Edges_Node_Setting
func (*GetAllOrganizations_Organizations_Edges_Node) GetUpdatedAt ¶
func (t *GetAllOrganizations_Organizations_Edges_Node) GetUpdatedAt() *time.Time
type GetAllOrganizations_Organizations_Edges_Node_Children ¶
type GetAllOrganizations_Organizations_Edges_Node_Children struct {
Edges []*GetAllOrganizations_Organizations_Edges_Node_Children_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
type GetAllOrganizations_Organizations_Edges_Node_Children_Edges ¶
type GetAllOrganizations_Organizations_Edges_Node_Children_Edges struct {
Node *GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
type GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node ¶
type GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
}
func (*GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetDescription ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetDescription() *string
func (*GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetDisplayName ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetDisplayName() string
func (*GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetID ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetID() string
func (*GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetName ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Children_Edges_Node) GetName() string
type GetAllOrganizations_Organizations_Edges_Node_Members ¶
type GetAllOrganizations_Organizations_Edges_Node_Members struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
User GetAllOrganizations_Organizations_Edges_Node_Members_User "json:\"user\" graphql:\"user\""
}
func (*GetAllOrganizations_Organizations_Edges_Node_Members) GetID ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Members) GetID() string
func (*GetAllOrganizations_Organizations_Edges_Node_Members) GetRole ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Members) GetRole() *enums.Role
type GetAllOrganizations_Organizations_Edges_Node_Members_User ¶
type GetAllOrganizations_Organizations_Edges_Node_Members_User struct {
ID string "json:\"id\" graphql:\"id\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
}
func (*GetAllOrganizations_Organizations_Edges_Node_Members_User) GetFirstName ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Members_User) GetFirstName() string
func (*GetAllOrganizations_Organizations_Edges_Node_Members_User) GetID ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Members_User) GetID() string
func (*GetAllOrganizations_Organizations_Edges_Node_Members_User) GetLastName ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Members_User) GetLastName() string
type GetAllOrganizations_Organizations_Edges_Node_Parent ¶
type GetAllOrganizations_Organizations_Edges_Node_Parent struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
}
func (*GetAllOrganizations_Organizations_Edges_Node_Parent) GetID ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Parent) GetID() string
func (*GetAllOrganizations_Organizations_Edges_Node_Parent) GetName ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Parent) GetName() string
type GetAllOrganizations_Organizations_Edges_Node_Setting ¶
type GetAllOrganizations_Organizations_Edges_Node_Setting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Domains []string "json:\"domains,omitempty\" graphql:\"domains\""
BillingContact *string "json:\"billingContact,omitempty\" graphql:\"billingContact\""
BillingEmail *string "json:\"billingEmail,omitempty\" graphql:\"billingEmail\""
BillingPhone *string "json:\"billingPhone,omitempty\" graphql:\"billingPhone\""
BillingAddress *string "json:\"billingAddress,omitempty\" graphql:\"billingAddress\""
TaxIdentifier *string "json:\"taxIdentifier,omitempty\" graphql:\"taxIdentifier\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
GeoLocation *enums.Region "json:\"geoLocation,omitempty\" graphql:\"geoLocation\""
}
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingAddress ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingAddress() *string
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingContact ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingContact() *string
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingEmail ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingEmail() *string
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingPhone ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetBillingPhone() *string
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetCreatedAt ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetCreatedAt() *time.Time
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetCreatedBy ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetCreatedBy() *string
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetDomains ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetDomains() []string
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetGeoLocation ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetGeoLocation() *enums.Region
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetID ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetID() string
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetTags ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetTags() []string
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetTaxIdentifier ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetTaxIdentifier() *string
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetUpdatedAt ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetUpdatedAt() *time.Time
func (*GetAllOrganizations_Organizations_Edges_Node_Setting) GetUpdatedBy ¶
func (t *GetAllOrganizations_Organizations_Edges_Node_Setting) GetUpdatedBy() *string
type GetAllPersonalAccessTokens ¶
type GetAllPersonalAccessTokens struct {
PersonalAccessTokens GetAllPersonalAccessTokens_PersonalAccessTokens "json:\"personalAccessTokens\" graphql:\"personalAccessTokens\""
}
func (*GetAllPersonalAccessTokens) GetPersonalAccessTokens ¶
func (t *GetAllPersonalAccessTokens) GetPersonalAccessTokens() *GetAllPersonalAccessTokens_PersonalAccessTokens
type GetAllPersonalAccessTokens_PersonalAccessTokens ¶
type GetAllPersonalAccessTokens_PersonalAccessTokens struct {
Edges []*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetAllPersonalAccessTokens_PersonalAccessTokens) GetEdges ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens) GetEdges() []*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges
type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges ¶
type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges struct {
Node *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node ¶
type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
Token string "json:\"token\" graphql:\"token\""
Scopes []string "json:\"scopes,omitempty\" graphql:\"scopes\""
Organizations []*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Organizations "json:\"organizations,omitempty\" graphql:\"organizations\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Name string "json:\"name\" graphql:\"name\""
ExpiresAt time.Time "json:\"expiresAt\" graphql:\"expiresAt\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
LastUsedAt *time.Time "json:\"lastUsedAt,omitempty\" graphql:\"lastUsedAt\""
Owner GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Owner "json:\"owner\" graphql:\"owner\""
}
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetCreatedAt ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetCreatedAt() *time.Time
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetCreatedBy ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetCreatedBy() *string
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetDescription ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetDescription() *string
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetExpiresAt ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetExpiresAt() *time.Time
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetID ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetID() string
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetLastUsedAt ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetLastUsedAt() *time.Time
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetName ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetName() string
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetOrganizations ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetOrganizations() []*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Organizations
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetScopes ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetScopes() []string
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetToken ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetToken() string
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetUpdatedAt ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetUpdatedAt() *time.Time
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetUpdatedBy ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node) GetUpdatedBy() *string
type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Organizations ¶
type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Organizations struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
}
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Organizations) GetName ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Organizations) GetName() string
type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Owner ¶
type GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Owner struct {
ID string "json:\"id\" graphql:\"id\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
}
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Owner) GetDisplayName ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Owner) GetDisplayName() string
func (*GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Owner) GetID ¶
func (t *GetAllPersonalAccessTokens_PersonalAccessTokens_Edges_Node_Owner) GetID() string
type GetAllTemplates ¶
type GetAllTemplates struct {
Templates GetAllTemplates_Templates "json:\"templates\" graphql:\"templates\""
}
func (*GetAllTemplates) GetTemplates ¶
func (t *GetAllTemplates) GetTemplates() *GetAllTemplates_Templates
type GetAllTemplates_Templates ¶
type GetAllTemplates_Templates struct {
Edges []*GetAllTemplates_Templates_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetAllTemplates_Templates) GetEdges ¶
func (t *GetAllTemplates_Templates) GetEdges() []*GetAllTemplates_Templates_Edges
type GetAllTemplates_Templates_Edges ¶
type GetAllTemplates_Templates_Edges struct {
Node *GetAllTemplates_Templates_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*GetAllTemplates_Templates_Edges) GetNode ¶
func (t *GetAllTemplates_Templates_Edges) GetNode() *GetAllTemplates_Templates_Edges_Node
type GetAllTemplates_Templates_Edges_Node ¶
type GetAllTemplates_Templates_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
Name string "json:\"name\" graphql:\"name\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
Jsonconfig json.RawMessage "json:\"jsonconfig\" graphql:\"jsonconfig\""
Uischema json.RawMessage "json:\"uischema,omitempty\" graphql:\"uischema\""
Owner GetAllTemplates_Templates_Edges_Node_Owner "json:\"owner\" graphql:\"owner\""
}
func (*GetAllTemplates_Templates_Edges_Node) GetCreatedAt ¶
func (t *GetAllTemplates_Templates_Edges_Node) GetCreatedAt() *time.Time
func (*GetAllTemplates_Templates_Edges_Node) GetCreatedBy ¶
func (t *GetAllTemplates_Templates_Edges_Node) GetCreatedBy() *string
func (*GetAllTemplates_Templates_Edges_Node) GetDeletedAt ¶
func (t *GetAllTemplates_Templates_Edges_Node) GetDeletedAt() *time.Time
func (*GetAllTemplates_Templates_Edges_Node) GetDeletedBy ¶
func (t *GetAllTemplates_Templates_Edges_Node) GetDeletedBy() *string
func (*GetAllTemplates_Templates_Edges_Node) GetDescription ¶
func (t *GetAllTemplates_Templates_Edges_Node) GetDescription() *string
func (*GetAllTemplates_Templates_Edges_Node) GetID ¶
func (t *GetAllTemplates_Templates_Edges_Node) GetID() string
func (*GetAllTemplates_Templates_Edges_Node) GetJsonconfig ¶
func (t *GetAllTemplates_Templates_Edges_Node) GetJsonconfig() *json.RawMessage
func (*GetAllTemplates_Templates_Edges_Node) GetName ¶
func (t *GetAllTemplates_Templates_Edges_Node) GetName() string
func (*GetAllTemplates_Templates_Edges_Node) GetOwner ¶
func (t *GetAllTemplates_Templates_Edges_Node) GetOwner() *GetAllTemplates_Templates_Edges_Node_Owner
func (*GetAllTemplates_Templates_Edges_Node) GetUischema ¶ added in v0.4.4
func (t *GetAllTemplates_Templates_Edges_Node) GetUischema() *json.RawMessage
func (*GetAllTemplates_Templates_Edges_Node) GetUpdatedAt ¶
func (t *GetAllTemplates_Templates_Edges_Node) GetUpdatedAt() *time.Time
func (*GetAllTemplates_Templates_Edges_Node) GetUpdatedBy ¶
func (t *GetAllTemplates_Templates_Edges_Node) GetUpdatedBy() *string
type GetAllTemplates_Templates_Edges_Node_Owner ¶
type GetAllTemplates_Templates_Edges_Node_Owner struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*GetAllTemplates_Templates_Edges_Node_Owner) GetID ¶
func (t *GetAllTemplates_Templates_Edges_Node_Owner) GetID() string
type GetAllUsers ¶
type GetAllUsers struct {
Users GetAllUsers_Users "json:\"users\" graphql:\"users\""
}
func (*GetAllUsers) GetUsers ¶
func (t *GetAllUsers) GetUsers() *GetAllUsers_Users
type GetAllUsers_Users ¶
type GetAllUsers_Users struct {
Edges []*GetAllUsers_Users_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetAllUsers_Users) GetEdges ¶
func (t *GetAllUsers_Users) GetEdges() []*GetAllUsers_Users_Edges
type GetAllUsers_Users_Edges ¶
type GetAllUsers_Users_Edges struct {
Node *GetAllUsers_Users_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*GetAllUsers_Users_Edges) GetNode ¶
func (t *GetAllUsers_Users_Edges) GetNode() *GetAllUsers_Users_Edges_Node
type GetAllUsers_Users_Edges_Node ¶
type GetAllUsers_Users_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Email string "json:\"email\" graphql:\"email\""
LastSeen *time.Time "json:\"lastSeen,omitempty\" graphql:\"lastSeen\""
Sub *string "json:\"sub,omitempty\" graphql:\"sub\""
AvatarRemoteURL *string "json:\"avatarRemoteURL,omitempty\" graphql:\"avatarRemoteURL\""
AvatarLocalFile *string "json:\"avatarLocalFile,omitempty\" graphql:\"avatarLocalFile\""
AuthProvider enums.AuthProvider "json:\"authProvider\" graphql:\"authProvider\""
Setting GetAllUsers_Users_Edges_Node_Setting "json:\"setting\" graphql:\"setting\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
}
func (*GetAllUsers_Users_Edges_Node) GetAuthProvider ¶
func (t *GetAllUsers_Users_Edges_Node) GetAuthProvider() *enums.AuthProvider
func (*GetAllUsers_Users_Edges_Node) GetAvatarLocalFile ¶
func (t *GetAllUsers_Users_Edges_Node) GetAvatarLocalFile() *string
func (*GetAllUsers_Users_Edges_Node) GetAvatarRemoteURL ¶
func (t *GetAllUsers_Users_Edges_Node) GetAvatarRemoteURL() *string
func (*GetAllUsers_Users_Edges_Node) GetCreatedAt ¶
func (t *GetAllUsers_Users_Edges_Node) GetCreatedAt() *time.Time
func (*GetAllUsers_Users_Edges_Node) GetCreatedBy ¶
func (t *GetAllUsers_Users_Edges_Node) GetCreatedBy() *string
func (*GetAllUsers_Users_Edges_Node) GetDisplayName ¶
func (t *GetAllUsers_Users_Edges_Node) GetDisplayName() string
func (*GetAllUsers_Users_Edges_Node) GetEmail ¶
func (t *GetAllUsers_Users_Edges_Node) GetEmail() string
func (*GetAllUsers_Users_Edges_Node) GetFirstName ¶
func (t *GetAllUsers_Users_Edges_Node) GetFirstName() string
func (*GetAllUsers_Users_Edges_Node) GetID ¶
func (t *GetAllUsers_Users_Edges_Node) GetID() string
func (*GetAllUsers_Users_Edges_Node) GetLastName ¶
func (t *GetAllUsers_Users_Edges_Node) GetLastName() string
func (*GetAllUsers_Users_Edges_Node) GetLastSeen ¶
func (t *GetAllUsers_Users_Edges_Node) GetLastSeen() *time.Time
func (*GetAllUsers_Users_Edges_Node) GetSetting ¶
func (t *GetAllUsers_Users_Edges_Node) GetSetting() *GetAllUsers_Users_Edges_Node_Setting
func (*GetAllUsers_Users_Edges_Node) GetSub ¶
func (t *GetAllUsers_Users_Edges_Node) GetSub() *string
func (*GetAllUsers_Users_Edges_Node) GetUpdatedAt ¶
func (t *GetAllUsers_Users_Edges_Node) GetUpdatedAt() *time.Time
func (*GetAllUsers_Users_Edges_Node) GetUpdatedBy ¶
func (t *GetAllUsers_Users_Edges_Node) GetUpdatedBy() *string
type GetAllUsers_Users_Edges_Node_Setting ¶
type GetAllUsers_Users_Edges_Node_Setting struct {
EmailConfirmed bool "json:\"emailConfirmed\" graphql:\"emailConfirmed\""
DefaultOrg *GetAllUsers_Users_Edges_Node_Setting_DefaultOrg "json:\"defaultOrg,omitempty\" graphql:\"defaultOrg\""
Locked bool "json:\"locked\" graphql:\"locked\""
Status enums.UserStatus "json:\"status\" graphql:\"status\""
Tags []string "json:\"tags\" graphql:\"tags\""
SuspendedAt *time.Time "json:\"suspendedAt,omitempty\" graphql:\"suspendedAt\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
SilencedAt *time.Time "json:\"silencedAt,omitempty\" graphql:\"silencedAt\""
}
func (*GetAllUsers_Users_Edges_Node_Setting) GetCreatedAt ¶
func (t *GetAllUsers_Users_Edges_Node_Setting) GetCreatedAt() *time.Time
func (*GetAllUsers_Users_Edges_Node_Setting) GetCreatedBy ¶
func (t *GetAllUsers_Users_Edges_Node_Setting) GetCreatedBy() *string
func (*GetAllUsers_Users_Edges_Node_Setting) GetDefaultOrg ¶
func (t *GetAllUsers_Users_Edges_Node_Setting) GetDefaultOrg() *GetAllUsers_Users_Edges_Node_Setting_DefaultOrg
func (*GetAllUsers_Users_Edges_Node_Setting) GetEmailConfirmed ¶
func (t *GetAllUsers_Users_Edges_Node_Setting) GetEmailConfirmed() bool
func (*GetAllUsers_Users_Edges_Node_Setting) GetLocked ¶
func (t *GetAllUsers_Users_Edges_Node_Setting) GetLocked() bool
func (*GetAllUsers_Users_Edges_Node_Setting) GetSilencedAt ¶
func (t *GetAllUsers_Users_Edges_Node_Setting) GetSilencedAt() *time.Time
func (*GetAllUsers_Users_Edges_Node_Setting) GetStatus ¶
func (t *GetAllUsers_Users_Edges_Node_Setting) GetStatus() *enums.UserStatus
func (*GetAllUsers_Users_Edges_Node_Setting) GetSuspendedAt ¶
func (t *GetAllUsers_Users_Edges_Node_Setting) GetSuspendedAt() *time.Time
func (*GetAllUsers_Users_Edges_Node_Setting) GetTags ¶
func (t *GetAllUsers_Users_Edges_Node_Setting) GetTags() []string
func (*GetAllUsers_Users_Edges_Node_Setting) GetUpdatedAt ¶
func (t *GetAllUsers_Users_Edges_Node_Setting) GetUpdatedAt() *time.Time
func (*GetAllUsers_Users_Edges_Node_Setting) GetUpdatedBy ¶
func (t *GetAllUsers_Users_Edges_Node_Setting) GetUpdatedBy() *string
type GetAllUsers_Users_Edges_Node_Setting_DefaultOrg ¶
type GetAllUsers_Users_Edges_Node_Setting_DefaultOrg struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
}
func (*GetAllUsers_Users_Edges_Node_Setting_DefaultOrg) GetID ¶
func (t *GetAllUsers_Users_Edges_Node_Setting_DefaultOrg) GetID() string
func (*GetAllUsers_Users_Edges_Node_Setting_DefaultOrg) GetName ¶
func (t *GetAllUsers_Users_Edges_Node_Setting_DefaultOrg) GetName() string
func (*GetAllUsers_Users_Edges_Node_Setting_DefaultOrg) GetPersonalOrg ¶
func (t *GetAllUsers_Users_Edges_Node_Setting_DefaultOrg) GetPersonalOrg() *bool
type GetDocumentData ¶ added in v0.4.4
type GetDocumentData struct {
DocumentData GetDocumentData_DocumentData "json:\"documentData\" graphql:\"documentData\""
}
func (*GetDocumentData) GetDocumentData ¶ added in v0.4.4
func (t *GetDocumentData) GetDocumentData() *GetDocumentData_DocumentData
type GetDocumentData_DocumentData ¶ added in v0.4.4
type GetDocumentData_DocumentData struct {
ID string "json:\"id\" graphql:\"id\""
TemplateID string "json:\"templateID\" graphql:\"templateID\""
Data json.RawMessage "json:\"data\" graphql:\"data\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*GetDocumentData_DocumentData) GetCreatedAt ¶ added in v0.4.4
func (t *GetDocumentData_DocumentData) GetCreatedAt() *time.Time
func (*GetDocumentData_DocumentData) GetCreatedBy ¶ added in v0.4.4
func (t *GetDocumentData_DocumentData) GetCreatedBy() *string
func (*GetDocumentData_DocumentData) GetData ¶ added in v0.4.4
func (t *GetDocumentData_DocumentData) GetData() *json.RawMessage
func (*GetDocumentData_DocumentData) GetID ¶ added in v0.4.4
func (t *GetDocumentData_DocumentData) GetID() string
func (*GetDocumentData_DocumentData) GetTemplateID ¶ added in v0.4.4
func (t *GetDocumentData_DocumentData) GetTemplateID() string
func (*GetDocumentData_DocumentData) GetUpdatedAt ¶ added in v0.4.4
func (t *GetDocumentData_DocumentData) GetUpdatedAt() *time.Time
func (*GetDocumentData_DocumentData) GetUpdatedBy ¶ added in v0.4.4
func (t *GetDocumentData_DocumentData) GetUpdatedBy() *string
type GetGroupByID ¶
type GetGroupByID struct {
Group GetGroupByID_Group "json:\"group\" graphql:\"group\""
}
func (*GetGroupByID) GetGroup ¶
func (t *GetGroupByID) GetGroup() *GetGroupByID_Group
type GetGroupByID_Group ¶
type GetGroupByID_Group struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Owner GetGroupByID_Group_Owner "json:\"owner\" graphql:\"owner\""
LogoURL *string "json:\"logoURL,omitempty\" graphql:\"logoURL\""
Setting GetGroupByID_Group_Setting "json:\"setting\" graphql:\"setting\""
Members []*GetGroupByID_Group_Members "json:\"members,omitempty\" graphql:\"members\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*GetGroupByID_Group) GetCreatedAt ¶
func (t *GetGroupByID_Group) GetCreatedAt() *time.Time
func (*GetGroupByID_Group) GetCreatedBy ¶
func (t *GetGroupByID_Group) GetCreatedBy() *string
func (*GetGroupByID_Group) GetDescription ¶
func (t *GetGroupByID_Group) GetDescription() *string
func (*GetGroupByID_Group) GetDisplayName ¶
func (t *GetGroupByID_Group) GetDisplayName() string
func (*GetGroupByID_Group) GetID ¶
func (t *GetGroupByID_Group) GetID() string
func (*GetGroupByID_Group) GetLogoURL ¶
func (t *GetGroupByID_Group) GetLogoURL() *string
func (*GetGroupByID_Group) GetMembers ¶
func (t *GetGroupByID_Group) GetMembers() []*GetGroupByID_Group_Members
func (*GetGroupByID_Group) GetName ¶
func (t *GetGroupByID_Group) GetName() string
func (*GetGroupByID_Group) GetOwner ¶
func (t *GetGroupByID_Group) GetOwner() *GetGroupByID_Group_Owner
func (*GetGroupByID_Group) GetSetting ¶
func (t *GetGroupByID_Group) GetSetting() *GetGroupByID_Group_Setting
func (*GetGroupByID_Group) GetUpdatedAt ¶
func (t *GetGroupByID_Group) GetUpdatedAt() *time.Time
func (*GetGroupByID_Group) GetUpdatedBy ¶
func (t *GetGroupByID_Group) GetUpdatedBy() *string
type GetGroupByID_Group_Members ¶
type GetGroupByID_Group_Members struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
User GetGroupByID_Group_Members_User "json:\"user\" graphql:\"user\""
}
func (*GetGroupByID_Group_Members) GetID ¶
func (t *GetGroupByID_Group_Members) GetID() string
func (*GetGroupByID_Group_Members) GetRole ¶
func (t *GetGroupByID_Group_Members) GetRole() *enums.Role
func (*GetGroupByID_Group_Members) GetUser ¶
func (t *GetGroupByID_Group_Members) GetUser() *GetGroupByID_Group_Members_User
type GetGroupByID_Group_Members_User ¶
type GetGroupByID_Group_Members_User struct {
ID string "json:\"id\" graphql:\"id\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
}
func (*GetGroupByID_Group_Members_User) GetFirstName ¶
func (t *GetGroupByID_Group_Members_User) GetFirstName() string
func (*GetGroupByID_Group_Members_User) GetID ¶
func (t *GetGroupByID_Group_Members_User) GetID() string
func (*GetGroupByID_Group_Members_User) GetLastName ¶
func (t *GetGroupByID_Group_Members_User) GetLastName() string
type GetGroupByID_Group_Owner ¶
type GetGroupByID_Group_Owner struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*GetGroupByID_Group_Owner) GetID ¶
func (t *GetGroupByID_Group_Owner) GetID() string
type GetGroupByID_Group_Setting ¶
type GetGroupByID_Group_Setting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Visibility enums.Visibility "json:\"visibility\" graphql:\"visibility\""
JoinPolicy enums.JoinPolicy "json:\"joinPolicy\" graphql:\"joinPolicy\""
SyncToSlack *bool "json:\"syncToSlack,omitempty\" graphql:\"syncToSlack\""
SyncToGithub *bool "json:\"syncToGithub,omitempty\" graphql:\"syncToGithub\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
}
func (*GetGroupByID_Group_Setting) GetCreatedAt ¶
func (t *GetGroupByID_Group_Setting) GetCreatedAt() *time.Time
func (*GetGroupByID_Group_Setting) GetCreatedBy ¶
func (t *GetGroupByID_Group_Setting) GetCreatedBy() *string
func (*GetGroupByID_Group_Setting) GetID ¶
func (t *GetGroupByID_Group_Setting) GetID() string
func (*GetGroupByID_Group_Setting) GetJoinPolicy ¶
func (t *GetGroupByID_Group_Setting) GetJoinPolicy() *enums.JoinPolicy
func (*GetGroupByID_Group_Setting) GetSyncToGithub ¶
func (t *GetGroupByID_Group_Setting) GetSyncToGithub() *bool
func (*GetGroupByID_Group_Setting) GetSyncToSlack ¶
func (t *GetGroupByID_Group_Setting) GetSyncToSlack() *bool
func (*GetGroupByID_Group_Setting) GetTags ¶
func (t *GetGroupByID_Group_Setting) GetTags() []string
func (*GetGroupByID_Group_Setting) GetUpdatedAt ¶
func (t *GetGroupByID_Group_Setting) GetUpdatedAt() *time.Time
func (*GetGroupByID_Group_Setting) GetUpdatedBy ¶
func (t *GetGroupByID_Group_Setting) GetUpdatedBy() *string
func (*GetGroupByID_Group_Setting) GetVisibility ¶
func (t *GetGroupByID_Group_Setting) GetVisibility() *enums.Visibility
type GetGroupMembersByGroupID ¶
type GetGroupMembersByGroupID struct {
GroupMemberships GetGroupMembersByGroupID_GroupMemberships "json:\"groupMemberships\" graphql:\"groupMemberships\""
}
func (*GetGroupMembersByGroupID) GetGroupMemberships ¶
func (t *GetGroupMembersByGroupID) GetGroupMemberships() *GetGroupMembersByGroupID_GroupMemberships
type GetGroupMembersByGroupID_GroupMemberships ¶
type GetGroupMembersByGroupID_GroupMemberships struct {
Edges []*GetGroupMembersByGroupID_GroupMemberships_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetGroupMembersByGroupID_GroupMemberships) GetEdges ¶
func (t *GetGroupMembersByGroupID_GroupMemberships) GetEdges() []*GetGroupMembersByGroupID_GroupMemberships_Edges
type GetGroupMembersByGroupID_GroupMemberships_Edges ¶
type GetGroupMembersByGroupID_GroupMemberships_Edges struct {
Node *GetGroupMembersByGroupID_GroupMemberships_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
type GetGroupMembersByGroupID_GroupMemberships_Edges_Node ¶
type GetGroupMembersByGroupID_GroupMemberships_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
GroupID string "json:\"groupID\" graphql:\"groupID\""
UserID string "json:\"userID\" graphql:\"userID\""
Role enums.Role "json:\"role\" graphql:\"role\""
User GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User "json:\"user\" graphql:\"user\""
}
func (*GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetGroupID ¶
func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetGroupID() string
func (*GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetID ¶
func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetID() string
func (*GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetRole ¶
func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetRole() *enums.Role
func (*GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetUserID ¶
func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node) GetUserID() string
type GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User ¶
type GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User struct {
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
ID string "json:\"id\" graphql:\"id\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Email string "json:\"email\" graphql:\"email\""
}
func (*GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetDisplayName ¶
func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetDisplayName() string
func (*GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetEmail ¶
func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetEmail() string
func (*GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetFirstName ¶
func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetFirstName() string
func (*GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetID ¶
func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetID() string
func (*GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetLastName ¶
func (t *GetGroupMembersByGroupID_GroupMemberships_Edges_Node_User) GetLastName() string
type GetGroupSettingByID ¶
type GetGroupSettingByID struct {
GroupSetting GetGroupSettingByID_GroupSetting "json:\"groupSetting\" graphql:\"groupSetting\""
}
func (*GetGroupSettingByID) GetGroupSetting ¶
func (t *GetGroupSettingByID) GetGroupSetting() *GetGroupSettingByID_GroupSetting
type GetGroupSettingByID_GroupSetting ¶
type GetGroupSettingByID_GroupSetting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Visibility enums.Visibility "json:\"visibility\" graphql:\"visibility\""
JoinPolicy enums.JoinPolicy "json:\"joinPolicy\" graphql:\"joinPolicy\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
SyncToSlack *bool "json:\"syncToSlack,omitempty\" graphql:\"syncToSlack\""
SyncToGithub *bool "json:\"syncToGithub,omitempty\" graphql:\"syncToGithub\""
Group *GetGroupSettingByID_GroupSetting_Group "json:\"group,omitempty\" graphql:\"group\""
}
func (*GetGroupSettingByID_GroupSetting) GetCreatedAt ¶
func (t *GetGroupSettingByID_GroupSetting) GetCreatedAt() *time.Time
func (*GetGroupSettingByID_GroupSetting) GetCreatedBy ¶
func (t *GetGroupSettingByID_GroupSetting) GetCreatedBy() *string
func (*GetGroupSettingByID_GroupSetting) GetGroup ¶
func (t *GetGroupSettingByID_GroupSetting) GetGroup() *GetGroupSettingByID_GroupSetting_Group
func (*GetGroupSettingByID_GroupSetting) GetID ¶
func (t *GetGroupSettingByID_GroupSetting) GetID() string
func (*GetGroupSettingByID_GroupSetting) GetJoinPolicy ¶
func (t *GetGroupSettingByID_GroupSetting) GetJoinPolicy() *enums.JoinPolicy
func (*GetGroupSettingByID_GroupSetting) GetSyncToGithub ¶
func (t *GetGroupSettingByID_GroupSetting) GetSyncToGithub() *bool
func (*GetGroupSettingByID_GroupSetting) GetSyncToSlack ¶
func (t *GetGroupSettingByID_GroupSetting) GetSyncToSlack() *bool
func (*GetGroupSettingByID_GroupSetting) GetTags ¶
func (t *GetGroupSettingByID_GroupSetting) GetTags() []string
func (*GetGroupSettingByID_GroupSetting) GetUpdatedAt ¶
func (t *GetGroupSettingByID_GroupSetting) GetUpdatedAt() *time.Time
func (*GetGroupSettingByID_GroupSetting) GetUpdatedBy ¶
func (t *GetGroupSettingByID_GroupSetting) GetUpdatedBy() *string
func (*GetGroupSettingByID_GroupSetting) GetVisibility ¶
func (t *GetGroupSettingByID_GroupSetting) GetVisibility() *enums.Visibility
type GetGroupSettingByID_GroupSetting_Group ¶
type GetGroupSettingByID_GroupSetting_Group struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*GetGroupSettingByID_GroupSetting_Group) GetID ¶
func (t *GetGroupSettingByID_GroupSetting_Group) GetID() string
type GetGroupSettingWhere ¶
type GetGroupSettingWhere struct {
GroupSettings GetGroupSettingWhere_GroupSettings "json:\"groupSettings\" graphql:\"groupSettings\""
}
func (*GetGroupSettingWhere) GetGroupSettings ¶
func (t *GetGroupSettingWhere) GetGroupSettings() *GetGroupSettingWhere_GroupSettings
type GetGroupSettingWhere_GroupSettings ¶
type GetGroupSettingWhere_GroupSettings struct {
Edges []*GetGroupSettingWhere_GroupSettings_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetGroupSettingWhere_GroupSettings) GetEdges ¶
func (t *GetGroupSettingWhere_GroupSettings) GetEdges() []*GetGroupSettingWhere_GroupSettings_Edges
type GetGroupSettingWhere_GroupSettings_Edges ¶
type GetGroupSettingWhere_GroupSettings_Edges struct {
Node *GetGroupSettingWhere_GroupSettings_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*GetGroupSettingWhere_GroupSettings_Edges) GetNode ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges) GetNode() *GetGroupSettingWhere_GroupSettings_Edges_Node
type GetGroupSettingWhere_GroupSettings_Edges_Node ¶
type GetGroupSettingWhere_GroupSettings_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Visibility enums.Visibility "json:\"visibility\" graphql:\"visibility\""
JoinPolicy enums.JoinPolicy "json:\"joinPolicy\" graphql:\"joinPolicy\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
SyncToSlack *bool "json:\"syncToSlack,omitempty\" graphql:\"syncToSlack\""
SyncToGithub *bool "json:\"syncToGithub,omitempty\" graphql:\"syncToGithub\""
Group *GetGroupSettingWhere_GroupSettings_Edges_Node_Group "json:\"group,omitempty\" graphql:\"group\""
}
func (*GetGroupSettingWhere_GroupSettings_Edges_Node) GetCreatedAt ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetCreatedAt() *time.Time
func (*GetGroupSettingWhere_GroupSettings_Edges_Node) GetCreatedBy ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetCreatedBy() *string
func (*GetGroupSettingWhere_GroupSettings_Edges_Node) GetID ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetID() string
func (*GetGroupSettingWhere_GroupSettings_Edges_Node) GetJoinPolicy ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetJoinPolicy() *enums.JoinPolicy
func (*GetGroupSettingWhere_GroupSettings_Edges_Node) GetSyncToGithub ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetSyncToGithub() *bool
func (*GetGroupSettingWhere_GroupSettings_Edges_Node) GetSyncToSlack ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetSyncToSlack() *bool
func (*GetGroupSettingWhere_GroupSettings_Edges_Node) GetTags ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetTags() []string
func (*GetGroupSettingWhere_GroupSettings_Edges_Node) GetUpdatedAt ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetUpdatedAt() *time.Time
func (*GetGroupSettingWhere_GroupSettings_Edges_Node) GetUpdatedBy ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetUpdatedBy() *string
func (*GetGroupSettingWhere_GroupSettings_Edges_Node) GetVisibility ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges_Node) GetVisibility() *enums.Visibility
type GetGroupSettingWhere_GroupSettings_Edges_Node_Group ¶
type GetGroupSettingWhere_GroupSettings_Edges_Node_Group struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*GetGroupSettingWhere_GroupSettings_Edges_Node_Group) GetID ¶
func (t *GetGroupSettingWhere_GroupSettings_Edges_Node_Group) GetID() string
type GetGroupSettings ¶
type GetGroupSettings struct {
GroupSettings GetGroupSettings_GroupSettings "json:\"groupSettings\" graphql:\"groupSettings\""
}
func (*GetGroupSettings) GetGroupSettings ¶
func (t *GetGroupSettings) GetGroupSettings() *GetGroupSettings_GroupSettings
type GetGroupSettings_GroupSettings ¶
type GetGroupSettings_GroupSettings struct {
Edges []*GetGroupSettings_GroupSettings_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetGroupSettings_GroupSettings) GetEdges ¶
func (t *GetGroupSettings_GroupSettings) GetEdges() []*GetGroupSettings_GroupSettings_Edges
type GetGroupSettings_GroupSettings_Edges ¶
type GetGroupSettings_GroupSettings_Edges struct {
Node *GetGroupSettings_GroupSettings_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*GetGroupSettings_GroupSettings_Edges) GetNode ¶
func (t *GetGroupSettings_GroupSettings_Edges) GetNode() *GetGroupSettings_GroupSettings_Edges_Node
type GetGroupSettings_GroupSettings_Edges_Node ¶
type GetGroupSettings_GroupSettings_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Visibility enums.Visibility "json:\"visibility\" graphql:\"visibility\""
JoinPolicy enums.JoinPolicy "json:\"joinPolicy\" graphql:\"joinPolicy\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
SyncToSlack *bool "json:\"syncToSlack,omitempty\" graphql:\"syncToSlack\""
SyncToGithub *bool "json:\"syncToGithub,omitempty\" graphql:\"syncToGithub\""
Group *GetGroupSettings_GroupSettings_Edges_Node_Group "json:\"group,omitempty\" graphql:\"group\""
}
func (*GetGroupSettings_GroupSettings_Edges_Node) GetCreatedAt ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node) GetCreatedAt() *time.Time
func (*GetGroupSettings_GroupSettings_Edges_Node) GetCreatedBy ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node) GetCreatedBy() *string
func (*GetGroupSettings_GroupSettings_Edges_Node) GetGroup ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node) GetGroup() *GetGroupSettings_GroupSettings_Edges_Node_Group
func (*GetGroupSettings_GroupSettings_Edges_Node) GetID ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node) GetID() string
func (*GetGroupSettings_GroupSettings_Edges_Node) GetJoinPolicy ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node) GetJoinPolicy() *enums.JoinPolicy
func (*GetGroupSettings_GroupSettings_Edges_Node) GetSyncToGithub ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node) GetSyncToGithub() *bool
func (*GetGroupSettings_GroupSettings_Edges_Node) GetSyncToSlack ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node) GetSyncToSlack() *bool
func (*GetGroupSettings_GroupSettings_Edges_Node) GetTags ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node) GetTags() []string
func (*GetGroupSettings_GroupSettings_Edges_Node) GetUpdatedAt ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node) GetUpdatedAt() *time.Time
func (*GetGroupSettings_GroupSettings_Edges_Node) GetUpdatedBy ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node) GetUpdatedBy() *string
func (*GetGroupSettings_GroupSettings_Edges_Node) GetVisibility ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node) GetVisibility() *enums.Visibility
type GetGroupSettings_GroupSettings_Edges_Node_Group ¶
type GetGroupSettings_GroupSettings_Edges_Node_Group struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*GetGroupSettings_GroupSettings_Edges_Node_Group) GetID ¶
func (t *GetGroupSettings_GroupSettings_Edges_Node_Group) GetID() string
type GetInvite ¶
type GetInvite struct {
Invite GetInvite_Invite "json:\"invite\" graphql:\"invite\""
}
func (*GetInvite) GetInvite ¶
func (t *GetInvite) GetInvite() *GetInvite_Invite
type GetInvite_Invite ¶
type GetInvite_Invite struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
Expires time.Time "json:\"expires\" graphql:\"expires\""
Recipient string "json:\"recipient\" graphql:\"recipient\""
Status enums.InviteStatus "json:\"status\" graphql:\"status\""
RequestorID string "json:\"requestorID\" graphql:\"requestorID\""
Role enums.Role "json:\"role\" graphql:\"role\""
SendAttempts int64 "json:\"sendAttempts\" graphql:\"sendAttempts\""
Owner GetInvite_Invite_Owner "json:\"owner\" graphql:\"owner\""
}
func (*GetInvite_Invite) GetCreatedAt ¶
func (t *GetInvite_Invite) GetCreatedAt() *time.Time
func (*GetInvite_Invite) GetCreatedBy ¶
func (t *GetInvite_Invite) GetCreatedBy() *string
func (*GetInvite_Invite) GetDeletedAt ¶
func (t *GetInvite_Invite) GetDeletedAt() *time.Time
func (*GetInvite_Invite) GetDeletedBy ¶
func (t *GetInvite_Invite) GetDeletedBy() *string
func (*GetInvite_Invite) GetExpires ¶
func (t *GetInvite_Invite) GetExpires() *time.Time
func (*GetInvite_Invite) GetID ¶
func (t *GetInvite_Invite) GetID() string
func (*GetInvite_Invite) GetOwner ¶
func (t *GetInvite_Invite) GetOwner() *GetInvite_Invite_Owner
func (*GetInvite_Invite) GetRecipient ¶
func (t *GetInvite_Invite) GetRecipient() string
func (*GetInvite_Invite) GetRequestorID ¶
func (t *GetInvite_Invite) GetRequestorID() string
func (*GetInvite_Invite) GetRole ¶
func (t *GetInvite_Invite) GetRole() *enums.Role
func (*GetInvite_Invite) GetSendAttempts ¶
func (t *GetInvite_Invite) GetSendAttempts() int64
func (*GetInvite_Invite) GetStatus ¶
func (t *GetInvite_Invite) GetStatus() *enums.InviteStatus
func (*GetInvite_Invite) GetUpdatedAt ¶
func (t *GetInvite_Invite) GetUpdatedAt() *time.Time
func (*GetInvite_Invite) GetUpdatedBy ¶
func (t *GetInvite_Invite) GetUpdatedBy() *string
type GetInvite_Invite_Owner ¶
type GetInvite_Invite_Owner struct {
ID string "json:\"id\" graphql:\"id\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Name string "json:\"name\" graphql:\"name\""
}
func (*GetInvite_Invite_Owner) GetDisplayName ¶
func (t *GetInvite_Invite_Owner) GetDisplayName() string
func (*GetInvite_Invite_Owner) GetID ¶
func (t *GetInvite_Invite_Owner) GetID() string
func (*GetInvite_Invite_Owner) GetName ¶
func (t *GetInvite_Invite_Owner) GetName() string
type GetOrgMembersByOrgID ¶
type GetOrgMembersByOrgID struct {
OrgMemberships GetOrgMembersByOrgID_OrgMemberships "json:\"orgMemberships\" graphql:\"orgMemberships\""
}
func (*GetOrgMembersByOrgID) GetOrgMemberships ¶
func (t *GetOrgMembersByOrgID) GetOrgMemberships() *GetOrgMembersByOrgID_OrgMemberships
type GetOrgMembersByOrgID_OrgMemberships ¶
type GetOrgMembersByOrgID_OrgMemberships struct {
Edges []*GetOrgMembersByOrgID_OrgMemberships_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetOrgMembersByOrgID_OrgMemberships) GetEdges ¶
func (t *GetOrgMembersByOrgID_OrgMemberships) GetEdges() []*GetOrgMembersByOrgID_OrgMemberships_Edges
type GetOrgMembersByOrgID_OrgMemberships_Edges ¶
type GetOrgMembersByOrgID_OrgMemberships_Edges struct {
Node *GetOrgMembersByOrgID_OrgMemberships_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*GetOrgMembersByOrgID_OrgMemberships_Edges) GetNode ¶
func (t *GetOrgMembersByOrgID_OrgMemberships_Edges) GetNode() *GetOrgMembersByOrgID_OrgMemberships_Edges_Node
type GetOrgMembersByOrgID_OrgMemberships_Edges_Node ¶
type GetOrgMembersByOrgID_OrgMemberships_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
OrganizationID string "json:\"organizationID\" graphql:\"organizationID\""
UserID string "json:\"userID\" graphql:\"userID\""
Role enums.Role "json:\"role\" graphql:\"role\""
User GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User "json:\"user\" graphql:\"user\""
}
func (*GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetID ¶
func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetID() string
func (*GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetOrganizationID ¶
func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetOrganizationID() string
func (*GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetRole ¶
func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetRole() *enums.Role
func (*GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetUserID ¶
func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node) GetUserID() string
type GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User ¶
type GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User struct {
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
ID string "json:\"id\" graphql:\"id\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Email string "json:\"email\" graphql:\"email\""
}
func (*GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetDisplayName ¶
func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetDisplayName() string
func (*GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetEmail ¶
func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetEmail() string
func (*GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetFirstName ¶
func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetFirstName() string
func (*GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetID ¶
func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetID() string
func (*GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetLastName ¶
func (t *GetOrgMembersByOrgID_OrgMemberships_Edges_Node_User) GetLastName() string
type GetOrganizationByID ¶
type GetOrganizationByID struct {
Organization GetOrganizationByID_Organization "json:\"organization\" graphql:\"organization\""
}
func (*GetOrganizationByID) GetOrganization ¶
func (t *GetOrganizationByID) GetOrganization() *GetOrganizationByID_Organization
type GetOrganizationByID_Organization ¶
type GetOrganizationByID_Organization struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
Parent *GetOrganizationByID_Organization_Parent "json:\"parent,omitempty\" graphql:\"parent\""
Children GetOrganizationByID_Organization_Children "json:\"children\" graphql:\"children\""
Members []*GetOrganizationByID_Organization_Members "json:\"members,omitempty\" graphql:\"members\""
Setting *GetOrganizationByID_Organization_Setting "json:\"setting,omitempty\" graphql:\"setting\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*GetOrganizationByID_Organization) GetChildren ¶
func (t *GetOrganizationByID_Organization) GetChildren() *GetOrganizationByID_Organization_Children
func (*GetOrganizationByID_Organization) GetCreatedAt ¶
func (t *GetOrganizationByID_Organization) GetCreatedAt() *time.Time
func (*GetOrganizationByID_Organization) GetCreatedBy ¶
func (t *GetOrganizationByID_Organization) GetCreatedBy() *string
func (*GetOrganizationByID_Organization) GetDescription ¶
func (t *GetOrganizationByID_Organization) GetDescription() *string
func (*GetOrganizationByID_Organization) GetDisplayName ¶
func (t *GetOrganizationByID_Organization) GetDisplayName() string
func (*GetOrganizationByID_Organization) GetID ¶
func (t *GetOrganizationByID_Organization) GetID() string
func (*GetOrganizationByID_Organization) GetMembers ¶
func (t *GetOrganizationByID_Organization) GetMembers() []*GetOrganizationByID_Organization_Members
func (*GetOrganizationByID_Organization) GetName ¶
func (t *GetOrganizationByID_Organization) GetName() string
func (*GetOrganizationByID_Organization) GetParent ¶
func (t *GetOrganizationByID_Organization) GetParent() *GetOrganizationByID_Organization_Parent
func (*GetOrganizationByID_Organization) GetPersonalOrg ¶
func (t *GetOrganizationByID_Organization) GetPersonalOrg() *bool
func (*GetOrganizationByID_Organization) GetSetting ¶
func (t *GetOrganizationByID_Organization) GetSetting() *GetOrganizationByID_Organization_Setting
func (*GetOrganizationByID_Organization) GetUpdatedAt ¶
func (t *GetOrganizationByID_Organization) GetUpdatedAt() *time.Time
func (*GetOrganizationByID_Organization) GetUpdatedBy ¶
func (t *GetOrganizationByID_Organization) GetUpdatedBy() *string
type GetOrganizationByID_Organization_Children ¶
type GetOrganizationByID_Organization_Children struct {
Edges []*GetOrganizationByID_Organization_Children_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetOrganizationByID_Organization_Children) GetEdges ¶
func (t *GetOrganizationByID_Organization_Children) GetEdges() []*GetOrganizationByID_Organization_Children_Edges
type GetOrganizationByID_Organization_Children_Edges ¶
type GetOrganizationByID_Organization_Children_Edges struct {
Node *GetOrganizationByID_Organization_Children_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
type GetOrganizationByID_Organization_Children_Edges_Node ¶
type GetOrganizationByID_Organization_Children_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
}
func (*GetOrganizationByID_Organization_Children_Edges_Node) GetDescription ¶
func (t *GetOrganizationByID_Organization_Children_Edges_Node) GetDescription() *string
func (*GetOrganizationByID_Organization_Children_Edges_Node) GetDisplayName ¶
func (t *GetOrganizationByID_Organization_Children_Edges_Node) GetDisplayName() string
func (*GetOrganizationByID_Organization_Children_Edges_Node) GetID ¶
func (t *GetOrganizationByID_Organization_Children_Edges_Node) GetID() string
func (*GetOrganizationByID_Organization_Children_Edges_Node) GetName ¶
func (t *GetOrganizationByID_Organization_Children_Edges_Node) GetName() string
type GetOrganizationByID_Organization_Members ¶
type GetOrganizationByID_Organization_Members struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
User GetOrganizationByID_Organization_Members_User "json:\"user\" graphql:\"user\""
}
func (*GetOrganizationByID_Organization_Members) GetID ¶
func (t *GetOrganizationByID_Organization_Members) GetID() string
func (*GetOrganizationByID_Organization_Members) GetRole ¶
func (t *GetOrganizationByID_Organization_Members) GetRole() *enums.Role
func (*GetOrganizationByID_Organization_Members) GetUser ¶
func (t *GetOrganizationByID_Organization_Members) GetUser() *GetOrganizationByID_Organization_Members_User
type GetOrganizationByID_Organization_Members_User ¶
type GetOrganizationByID_Organization_Members_User struct {
ID string "json:\"id\" graphql:\"id\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
}
func (*GetOrganizationByID_Organization_Members_User) GetFirstName ¶
func (t *GetOrganizationByID_Organization_Members_User) GetFirstName() string
func (*GetOrganizationByID_Organization_Members_User) GetID ¶
func (t *GetOrganizationByID_Organization_Members_User) GetID() string
func (*GetOrganizationByID_Organization_Members_User) GetLastName ¶
func (t *GetOrganizationByID_Organization_Members_User) GetLastName() string
type GetOrganizationByID_Organization_Parent ¶
type GetOrganizationByID_Organization_Parent struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
}
func (*GetOrganizationByID_Organization_Parent) GetID ¶
func (t *GetOrganizationByID_Organization_Parent) GetID() string
func (*GetOrganizationByID_Organization_Parent) GetName ¶
func (t *GetOrganizationByID_Organization_Parent) GetName() string
type GetOrganizationByID_Organization_Setting ¶
type GetOrganizationByID_Organization_Setting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Domains []string "json:\"domains,omitempty\" graphql:\"domains\""
BillingContact *string "json:\"billingContact,omitempty\" graphql:\"billingContact\""
BillingEmail *string "json:\"billingEmail,omitempty\" graphql:\"billingEmail\""
BillingPhone *string "json:\"billingPhone,omitempty\" graphql:\"billingPhone\""
BillingAddress *string "json:\"billingAddress,omitempty\" graphql:\"billingAddress\""
TaxIdentifier *string "json:\"taxIdentifier,omitempty\" graphql:\"taxIdentifier\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
GeoLocation *enums.Region "json:\"geoLocation,omitempty\" graphql:\"geoLocation\""
}
func (*GetOrganizationByID_Organization_Setting) GetBillingAddress ¶
func (t *GetOrganizationByID_Organization_Setting) GetBillingAddress() *string
func (*GetOrganizationByID_Organization_Setting) GetBillingContact ¶
func (t *GetOrganizationByID_Organization_Setting) GetBillingContact() *string
func (*GetOrganizationByID_Organization_Setting) GetBillingEmail ¶
func (t *GetOrganizationByID_Organization_Setting) GetBillingEmail() *string
func (*GetOrganizationByID_Organization_Setting) GetBillingPhone ¶
func (t *GetOrganizationByID_Organization_Setting) GetBillingPhone() *string
func (*GetOrganizationByID_Organization_Setting) GetCreatedAt ¶
func (t *GetOrganizationByID_Organization_Setting) GetCreatedAt() *time.Time
func (*GetOrganizationByID_Organization_Setting) GetCreatedBy ¶
func (t *GetOrganizationByID_Organization_Setting) GetCreatedBy() *string
func (*GetOrganizationByID_Organization_Setting) GetDomains ¶
func (t *GetOrganizationByID_Organization_Setting) GetDomains() []string
func (*GetOrganizationByID_Organization_Setting) GetGeoLocation ¶
func (t *GetOrganizationByID_Organization_Setting) GetGeoLocation() *enums.Region
func (*GetOrganizationByID_Organization_Setting) GetID ¶
func (t *GetOrganizationByID_Organization_Setting) GetID() string
func (*GetOrganizationByID_Organization_Setting) GetTags ¶
func (t *GetOrganizationByID_Organization_Setting) GetTags() []string
func (*GetOrganizationByID_Organization_Setting) GetTaxIdentifier ¶
func (t *GetOrganizationByID_Organization_Setting) GetTaxIdentifier() *string
func (*GetOrganizationByID_Organization_Setting) GetUpdatedAt ¶
func (t *GetOrganizationByID_Organization_Setting) GetUpdatedAt() *time.Time
func (*GetOrganizationByID_Organization_Setting) GetUpdatedBy ¶
func (t *GetOrganizationByID_Organization_Setting) GetUpdatedBy() *string
type GetOrganizationSettingByID ¶
type GetOrganizationSettingByID struct {
OrganizationSetting GetOrganizationSettingByID_OrganizationSetting "json:\"organizationSetting\" graphql:\"organizationSetting\""
}
func (*GetOrganizationSettingByID) GetOrganizationSetting ¶
func (t *GetOrganizationSettingByID) GetOrganizationSetting() *GetOrganizationSettingByID_OrganizationSetting
type GetOrganizationSettingByID_OrganizationSetting ¶
type GetOrganizationSettingByID_OrganizationSetting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
Domains []string "json:\"domains,omitempty\" graphql:\"domains\""
BillingContact *string "json:\"billingContact,omitempty\" graphql:\"billingContact\""
BillingEmail *string "json:\"billingEmail,omitempty\" graphql:\"billingEmail\""
BillingPhone *string "json:\"billingPhone,omitempty\" graphql:\"billingPhone\""
BillingAddress *string "json:\"billingAddress,omitempty\" graphql:\"billingAddress\""
TaxIdentifier *string "json:\"taxIdentifier,omitempty\" graphql:\"taxIdentifier\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
GeoLocation *enums.Region "json:\"geoLocation,omitempty\" graphql:\"geoLocation\""
Organization *GetOrganizationSettingByID_OrganizationSetting_Organization "json:\"organization,omitempty\" graphql:\"organization\""
}
func (*GetOrganizationSettingByID_OrganizationSetting) GetBillingAddress ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetBillingAddress() *string
func (*GetOrganizationSettingByID_OrganizationSetting) GetBillingContact ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetBillingContact() *string
func (*GetOrganizationSettingByID_OrganizationSetting) GetBillingEmail ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetBillingEmail() *string
func (*GetOrganizationSettingByID_OrganizationSetting) GetBillingPhone ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetBillingPhone() *string
func (*GetOrganizationSettingByID_OrganizationSetting) GetCreatedAt ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetCreatedAt() *time.Time
func (*GetOrganizationSettingByID_OrganizationSetting) GetCreatedBy ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetCreatedBy() *string
func (*GetOrganizationSettingByID_OrganizationSetting) GetDeletedAt ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetDeletedAt() *time.Time
func (*GetOrganizationSettingByID_OrganizationSetting) GetDeletedBy ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetDeletedBy() *string
func (*GetOrganizationSettingByID_OrganizationSetting) GetDomains ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetDomains() []string
func (*GetOrganizationSettingByID_OrganizationSetting) GetGeoLocation ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetGeoLocation() *enums.Region
func (*GetOrganizationSettingByID_OrganizationSetting) GetID ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetID() string
func (*GetOrganizationSettingByID_OrganizationSetting) GetOrganization ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetOrganization() *GetOrganizationSettingByID_OrganizationSetting_Organization
func (*GetOrganizationSettingByID_OrganizationSetting) GetTags ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetTags() []string
func (*GetOrganizationSettingByID_OrganizationSetting) GetTaxIdentifier ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetTaxIdentifier() *string
func (*GetOrganizationSettingByID_OrganizationSetting) GetUpdatedAt ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetUpdatedAt() *time.Time
func (*GetOrganizationSettingByID_OrganizationSetting) GetUpdatedBy ¶
func (t *GetOrganizationSettingByID_OrganizationSetting) GetUpdatedBy() *string
type GetOrganizationSettingByID_OrganizationSetting_Organization ¶
type GetOrganizationSettingByID_OrganizationSetting_Organization struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*GetOrganizationSettingByID_OrganizationSetting_Organization) GetID ¶
func (t *GetOrganizationSettingByID_OrganizationSetting_Organization) GetID() string
type GetOrganizationSettingWhere ¶
type GetOrganizationSettingWhere struct {
OrganizationSettings GetOrganizationSettingWhere_OrganizationSettings "json:\"organizationSettings\" graphql:\"organizationSettings\""
}
func (*GetOrganizationSettingWhere) GetOrganizationSettings ¶
func (t *GetOrganizationSettingWhere) GetOrganizationSettings() *GetOrganizationSettingWhere_OrganizationSettings
type GetOrganizationSettingWhere_OrganizationSettings ¶
type GetOrganizationSettingWhere_OrganizationSettings struct {
Edges []*GetOrganizationSettingWhere_OrganizationSettings_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
type GetOrganizationSettingWhere_OrganizationSettings_Edges ¶
type GetOrganizationSettingWhere_OrganizationSettings_Edges struct {
Node *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
type GetOrganizationSettingWhere_OrganizationSettings_Edges_Node ¶
type GetOrganizationSettingWhere_OrganizationSettings_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
Domains []string "json:\"domains,omitempty\" graphql:\"domains\""
BillingContact *string "json:\"billingContact,omitempty\" graphql:\"billingContact\""
BillingEmail *string "json:\"billingEmail,omitempty\" graphql:\"billingEmail\""
BillingPhone *string "json:\"billingPhone,omitempty\" graphql:\"billingPhone\""
BillingAddress *string "json:\"billingAddress,omitempty\" graphql:\"billingAddress\""
TaxIdentifier *string "json:\"taxIdentifier,omitempty\" graphql:\"taxIdentifier\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
GeoLocation *enums.Region "json:\"geoLocation,omitempty\" graphql:\"geoLocation\""
Organization *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node_Organization "json:\"organization,omitempty\" graphql:\"organization\""
}
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingAddress ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingAddress() *string
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingContact ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingContact() *string
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingEmail ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingEmail() *string
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingPhone ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetBillingPhone() *string
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetCreatedAt ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetCreatedAt() *time.Time
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetCreatedBy ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetCreatedBy() *string
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetDeletedAt ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetDeletedAt() *time.Time
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetDeletedBy ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetDeletedBy() *string
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetDomains ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetDomains() []string
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetGeoLocation ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetGeoLocation() *enums.Region
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetID ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetID() string
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetOrganization ¶
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetTags ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetTags() []string
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetTaxIdentifier ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetTaxIdentifier() *string
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetUpdatedAt ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetUpdatedAt() *time.Time
func (*GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetUpdatedBy ¶
func (t *GetOrganizationSettingWhere_OrganizationSettings_Edges_Node) GetUpdatedBy() *string
type GetOrganizationSettingWhere_OrganizationSettings_Edges_Node_Organization ¶
type GetOrganizationSettingWhere_OrganizationSettings_Edges_Node_Organization struct {
ID string "json:\"id\" graphql:\"id\""
}
type GetOrganizationSettings ¶
type GetOrganizationSettings struct {
OrganizationSettings GetOrganizationSettings_OrganizationSettings "json:\"organizationSettings\" graphql:\"organizationSettings\""
}
func (*GetOrganizationSettings) GetOrganizationSettings ¶
func (t *GetOrganizationSettings) GetOrganizationSettings() *GetOrganizationSettings_OrganizationSettings
type GetOrganizationSettings_OrganizationSettings ¶
type GetOrganizationSettings_OrganizationSettings struct {
Edges []*GetOrganizationSettings_OrganizationSettings_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetOrganizationSettings_OrganizationSettings) GetEdges ¶
func (t *GetOrganizationSettings_OrganizationSettings) GetEdges() []*GetOrganizationSettings_OrganizationSettings_Edges
type GetOrganizationSettings_OrganizationSettings_Edges ¶
type GetOrganizationSettings_OrganizationSettings_Edges struct {
Node *GetOrganizationSettings_OrganizationSettings_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
type GetOrganizationSettings_OrganizationSettings_Edges_Node ¶
type GetOrganizationSettings_OrganizationSettings_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
Domains []string "json:\"domains,omitempty\" graphql:\"domains\""
BillingContact *string "json:\"billingContact,omitempty\" graphql:\"billingContact\""
BillingEmail *string "json:\"billingEmail,omitempty\" graphql:\"billingEmail\""
BillingPhone *string "json:\"billingPhone,omitempty\" graphql:\"billingPhone\""
BillingAddress *string "json:\"billingAddress,omitempty\" graphql:\"billingAddress\""
TaxIdentifier *string "json:\"taxIdentifier,omitempty\" graphql:\"taxIdentifier\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
GeoLocation *enums.Region "json:\"geoLocation,omitempty\" graphql:\"geoLocation\""
Organization *GetOrganizationSettings_OrganizationSettings_Edges_Node_Organization "json:\"organization,omitempty\" graphql:\"organization\""
}
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingAddress ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingAddress() *string
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingContact ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingContact() *string
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingEmail ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingEmail() *string
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingPhone ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetBillingPhone() *string
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetCreatedAt ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetCreatedAt() *time.Time
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetCreatedBy ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetCreatedBy() *string
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetDeletedAt ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetDeletedAt() *time.Time
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetDeletedBy ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetDeletedBy() *string
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetDomains ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetDomains() []string
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetGeoLocation ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetGeoLocation() *enums.Region
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetID ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetID() string
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetOrganization ¶
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetTags ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetTags() []string
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetTaxIdentifier ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetTaxIdentifier() *string
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetUpdatedAt ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetUpdatedAt() *time.Time
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node) GetUpdatedBy ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node) GetUpdatedBy() *string
type GetOrganizationSettings_OrganizationSettings_Edges_Node_Organization ¶
type GetOrganizationSettings_OrganizationSettings_Edges_Node_Organization struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*GetOrganizationSettings_OrganizationSettings_Edges_Node_Organization) GetID ¶
func (t *GetOrganizationSettings_OrganizationSettings_Edges_Node_Organization) GetID() string
type GetPersonalAccessTokenByID ¶
type GetPersonalAccessTokenByID struct {
PersonalAccessToken GetPersonalAccessTokenByID_PersonalAccessToken "json:\"personalAccessToken\" graphql:\"personalAccessToken\""
}
func (*GetPersonalAccessTokenByID) GetPersonalAccessToken ¶
func (t *GetPersonalAccessTokenByID) GetPersonalAccessToken() *GetPersonalAccessTokenByID_PersonalAccessToken
type GetPersonalAccessTokenByID_PersonalAccessToken ¶
type GetPersonalAccessTokenByID_PersonalAccessToken struct {
ID string "json:\"id\" graphql:\"id\""
Token string "json:\"token\" graphql:\"token\""
Scopes []string "json:\"scopes,omitempty\" graphql:\"scopes\""
Organizations []*GetPersonalAccessTokenByID_PersonalAccessToken_Organizations "json:\"organizations,omitempty\" graphql:\"organizations\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Name string "json:\"name\" graphql:\"name\""
ExpiresAt time.Time "json:\"expiresAt\" graphql:\"expiresAt\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
LastUsedAt *time.Time "json:\"lastUsedAt,omitempty\" graphql:\"lastUsedAt\""
Owner GetPersonalAccessTokenByID_PersonalAccessToken_Owner "json:\"owner\" graphql:\"owner\""
}
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetCreatedAt ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetCreatedAt() *time.Time
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetCreatedBy ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetCreatedBy() *string
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetDescription ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetDescription() *string
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetExpiresAt ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetExpiresAt() *time.Time
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetID ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetID() string
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetLastUsedAt ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetLastUsedAt() *time.Time
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetName ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetName() string
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetOrganizations ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetOrganizations() []*GetPersonalAccessTokenByID_PersonalAccessToken_Organizations
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetScopes ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetScopes() []string
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetToken ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetToken() string
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetUpdatedAt ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetUpdatedAt() *time.Time
func (*GetPersonalAccessTokenByID_PersonalAccessToken) GetUpdatedBy ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken) GetUpdatedBy() *string
type GetPersonalAccessTokenByID_PersonalAccessToken_Organizations ¶
type GetPersonalAccessTokenByID_PersonalAccessToken_Organizations struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
}
func (*GetPersonalAccessTokenByID_PersonalAccessToken_Organizations) GetID ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken_Organizations) GetID() string
func (*GetPersonalAccessTokenByID_PersonalAccessToken_Organizations) GetName ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken_Organizations) GetName() string
type GetPersonalAccessTokenByID_PersonalAccessToken_Owner ¶
type GetPersonalAccessTokenByID_PersonalAccessToken_Owner struct {
ID string "json:\"id\" graphql:\"id\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
}
func (*GetPersonalAccessTokenByID_PersonalAccessToken_Owner) GetDisplayName ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken_Owner) GetDisplayName() string
func (*GetPersonalAccessTokenByID_PersonalAccessToken_Owner) GetID ¶
func (t *GetPersonalAccessTokenByID_PersonalAccessToken_Owner) GetID() string
type GetTFASetting ¶ added in v0.4.4
type GetTFASetting struct {
TfaSetting GetTFASetting_TfaSetting "json:\"tfaSetting\" graphql:\"tfaSetting\""
}
func (*GetTFASetting) GetTfaSetting ¶ added in v0.4.4
func (t *GetTFASetting) GetTfaSetting() *GetTFASetting_TfaSetting
type GetTFASetting_TfaSetting ¶ added in v0.4.4
type GetTFASetting_TfaSetting struct {
TotpAllowed *bool "json:\"totpAllowed,omitempty\" graphql:\"totpAllowed\""
RecoveryCodes []string "json:\"recoveryCodes,omitempty\" graphql:\"recoveryCodes\""
Verified bool "json:\"verified\" graphql:\"verified\""
}
func (*GetTFASetting_TfaSetting) GetRecoveryCodes ¶ added in v0.4.4
func (t *GetTFASetting_TfaSetting) GetRecoveryCodes() []string
func (*GetTFASetting_TfaSetting) GetTotpAllowed ¶ added in v0.4.4
func (t *GetTFASetting_TfaSetting) GetTotpAllowed() *bool
func (*GetTFASetting_TfaSetting) GetVerified ¶ added in v0.4.4
func (t *GetTFASetting_TfaSetting) GetVerified() bool
type GetTFASettings ¶
type GetTFASettings struct {
TfaSettings GetTFASettings_TfaSettings "json:\"tfaSettings\" graphql:\"tfaSettings\""
}
func (*GetTFASettings) GetTfaSettings ¶
func (t *GetTFASettings) GetTfaSettings() *GetTFASettings_TfaSettings
type GetTFASettings_TfaSettings ¶
type GetTFASettings_TfaSettings struct {
Edges []*GetTFASettings_TfaSettings_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetTFASettings_TfaSettings) GetEdges ¶ added in v0.4.4
func (t *GetTFASettings_TfaSettings) GetEdges() []*GetTFASettings_TfaSettings_Edges
type GetTFASettings_TfaSettings_Edges ¶ added in v0.4.4
type GetTFASettings_TfaSettings_Edges struct {
Node *GetTFASettings_TfaSettings_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*GetTFASettings_TfaSettings_Edges) GetNode ¶ added in v0.4.4
func (t *GetTFASettings_TfaSettings_Edges) GetNode() *GetTFASettings_TfaSettings_Edges_Node
type GetTFASettings_TfaSettings_Edges_Node ¶ added in v0.4.4
type GetTFASettings_TfaSettings_Edges_Node struct {
TotpAllowed *bool "json:\"totpAllowed,omitempty\" graphql:\"totpAllowed\""
RecoveryCodes []string "json:\"recoveryCodes,omitempty\" graphql:\"recoveryCodes\""
Verified bool "json:\"verified\" graphql:\"verified\""
}
func (*GetTFASettings_TfaSettings_Edges_Node) GetRecoveryCodes ¶ added in v0.4.4
func (t *GetTFASettings_TfaSettings_Edges_Node) GetRecoveryCodes() []string
func (*GetTFASettings_TfaSettings_Edges_Node) GetTotpAllowed ¶ added in v0.4.4
func (t *GetTFASettings_TfaSettings_Edges_Node) GetTotpAllowed() *bool
func (*GetTFASettings_TfaSettings_Edges_Node) GetVerified ¶ added in v0.4.4
func (t *GetTFASettings_TfaSettings_Edges_Node) GetVerified() bool
type GetTemplate ¶
type GetTemplate struct {
Template GetTemplate_Template "json:\"template\" graphql:\"template\""
}
func (*GetTemplate) GetTemplate ¶
func (t *GetTemplate) GetTemplate() *GetTemplate_Template
type GetTemplate_Template ¶
type GetTemplate_Template struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
Name string "json:\"name\" graphql:\"name\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
Jsonconfig json.RawMessage "json:\"jsonconfig\" graphql:\"jsonconfig\""
Uischema json.RawMessage "json:\"uischema,omitempty\" graphql:\"uischema\""
Owner GetTemplate_Template_Owner "json:\"owner\" graphql:\"owner\""
}
func (*GetTemplate_Template) GetCreatedAt ¶
func (t *GetTemplate_Template) GetCreatedAt() *time.Time
func (*GetTemplate_Template) GetCreatedBy ¶
func (t *GetTemplate_Template) GetCreatedBy() *string
func (*GetTemplate_Template) GetDeletedAt ¶
func (t *GetTemplate_Template) GetDeletedAt() *time.Time
func (*GetTemplate_Template) GetDeletedBy ¶
func (t *GetTemplate_Template) GetDeletedBy() *string
func (*GetTemplate_Template) GetDescription ¶
func (t *GetTemplate_Template) GetDescription() *string
func (*GetTemplate_Template) GetID ¶
func (t *GetTemplate_Template) GetID() string
func (*GetTemplate_Template) GetJsonconfig ¶
func (t *GetTemplate_Template) GetJsonconfig() *json.RawMessage
func (*GetTemplate_Template) GetName ¶
func (t *GetTemplate_Template) GetName() string
func (*GetTemplate_Template) GetOwner ¶
func (t *GetTemplate_Template) GetOwner() *GetTemplate_Template_Owner
func (*GetTemplate_Template) GetUischema ¶ added in v0.4.4
func (t *GetTemplate_Template) GetUischema() *json.RawMessage
func (*GetTemplate_Template) GetUpdatedAt ¶
func (t *GetTemplate_Template) GetUpdatedAt() *time.Time
func (*GetTemplate_Template) GetUpdatedBy ¶
func (t *GetTemplate_Template) GetUpdatedBy() *string
type GetTemplate_Template_Owner ¶
type GetTemplate_Template_Owner struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*GetTemplate_Template_Owner) GetID ¶
func (t *GetTemplate_Template_Owner) GetID() string
type GetUserByID ¶
type GetUserByID struct {
User GetUserByID_User "json:\"user\" graphql:\"user\""
}
func (*GetUserByID) GetUser ¶
func (t *GetUserByID) GetUser() *GetUserByID_User
type GetUserByIDWithOrgs ¶
type GetUserByIDWithOrgs struct {
User GetUserByIDWithOrgs_User "json:\"user\" graphql:\"user\""
}
func (*GetUserByIDWithOrgs) GetUser ¶
func (t *GetUserByIDWithOrgs) GetUser() *GetUserByIDWithOrgs_User
type GetUserByIDWithOrgs_User ¶
type GetUserByIDWithOrgs_User struct {
ID string "json:\"id\" graphql:\"id\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Email string "json:\"email\" graphql:\"email\""
LastSeen *time.Time "json:\"lastSeen,omitempty\" graphql:\"lastSeen\""
Sub *string "json:\"sub,omitempty\" graphql:\"sub\""
AvatarRemoteURL *string "json:\"avatarRemoteURL,omitempty\" graphql:\"avatarRemoteURL\""
AvatarLocalFile *string "json:\"avatarLocalFile,omitempty\" graphql:\"avatarLocalFile\""
AuthProvider enums.AuthProvider "json:\"authProvider\" graphql:\"authProvider\""
Setting GetUserByIDWithOrgs_User_Setting "json:\"setting\" graphql:\"setting\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
OrgMemberships []*GetUserByIDWithOrgs_User_OrgMemberships "json:\"orgMemberships,omitempty\" graphql:\"orgMemberships\""
}
func (*GetUserByIDWithOrgs_User) GetAuthProvider ¶
func (t *GetUserByIDWithOrgs_User) GetAuthProvider() *enums.AuthProvider
func (*GetUserByIDWithOrgs_User) GetAvatarLocalFile ¶
func (t *GetUserByIDWithOrgs_User) GetAvatarLocalFile() *string
func (*GetUserByIDWithOrgs_User) GetAvatarRemoteURL ¶
func (t *GetUserByIDWithOrgs_User) GetAvatarRemoteURL() *string
func (*GetUserByIDWithOrgs_User) GetCreatedAt ¶
func (t *GetUserByIDWithOrgs_User) GetCreatedAt() *time.Time
func (*GetUserByIDWithOrgs_User) GetCreatedBy ¶
func (t *GetUserByIDWithOrgs_User) GetCreatedBy() *string
func (*GetUserByIDWithOrgs_User) GetDisplayName ¶
func (t *GetUserByIDWithOrgs_User) GetDisplayName() string
func (*GetUserByIDWithOrgs_User) GetEmail ¶
func (t *GetUserByIDWithOrgs_User) GetEmail() string
func (*GetUserByIDWithOrgs_User) GetFirstName ¶
func (t *GetUserByIDWithOrgs_User) GetFirstName() string
func (*GetUserByIDWithOrgs_User) GetID ¶
func (t *GetUserByIDWithOrgs_User) GetID() string
func (*GetUserByIDWithOrgs_User) GetLastName ¶
func (t *GetUserByIDWithOrgs_User) GetLastName() string
func (*GetUserByIDWithOrgs_User) GetLastSeen ¶
func (t *GetUserByIDWithOrgs_User) GetLastSeen() *time.Time
func (*GetUserByIDWithOrgs_User) GetOrgMemberships ¶
func (t *GetUserByIDWithOrgs_User) GetOrgMemberships() []*GetUserByIDWithOrgs_User_OrgMemberships
func (*GetUserByIDWithOrgs_User) GetSetting ¶
func (t *GetUserByIDWithOrgs_User) GetSetting() *GetUserByIDWithOrgs_User_Setting
func (*GetUserByIDWithOrgs_User) GetSub ¶
func (t *GetUserByIDWithOrgs_User) GetSub() *string
func (*GetUserByIDWithOrgs_User) GetUpdatedAt ¶
func (t *GetUserByIDWithOrgs_User) GetUpdatedAt() *time.Time
func (*GetUserByIDWithOrgs_User) GetUpdatedBy ¶
func (t *GetUserByIDWithOrgs_User) GetUpdatedBy() *string
type GetUserByIDWithOrgs_User_OrgMemberships ¶
type GetUserByIDWithOrgs_User_OrgMemberships struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
User GetUserByIDWithOrgs_User_OrgMemberships_User "json:\"user\" graphql:\"user\""
}
func (*GetUserByIDWithOrgs_User_OrgMemberships) GetID ¶
func (t *GetUserByIDWithOrgs_User_OrgMemberships) GetID() string
func (*GetUserByIDWithOrgs_User_OrgMemberships) GetRole ¶
func (t *GetUserByIDWithOrgs_User_OrgMemberships) GetRole() *enums.Role
func (*GetUserByIDWithOrgs_User_OrgMemberships) GetUser ¶
func (t *GetUserByIDWithOrgs_User_OrgMemberships) GetUser() *GetUserByIDWithOrgs_User_OrgMemberships_User
type GetUserByIDWithOrgs_User_OrgMemberships_User ¶
type GetUserByIDWithOrgs_User_OrgMemberships_User struct {
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
}
func (*GetUserByIDWithOrgs_User_OrgMemberships_User) GetFirstName ¶
func (t *GetUserByIDWithOrgs_User_OrgMemberships_User) GetFirstName() string
func (*GetUserByIDWithOrgs_User_OrgMemberships_User) GetLastName ¶
func (t *GetUserByIDWithOrgs_User_OrgMemberships_User) GetLastName() string
type GetUserByIDWithOrgs_User_Setting ¶
type GetUserByIDWithOrgs_User_Setting struct {
EmailConfirmed bool "json:\"emailConfirmed\" graphql:\"emailConfirmed\""
DefaultOrg *GetUserByIDWithOrgs_User_Setting_DefaultOrg "json:\"defaultOrg,omitempty\" graphql:\"defaultOrg\""
Locked bool "json:\"locked\" graphql:\"locked\""
Status enums.UserStatus "json:\"status\" graphql:\"status\""
Tags []string "json:\"tags\" graphql:\"tags\""
SuspendedAt *time.Time "json:\"suspendedAt,omitempty\" graphql:\"suspendedAt\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
SilencedAt *time.Time "json:\"silencedAt,omitempty\" graphql:\"silencedAt\""
}
func (*GetUserByIDWithOrgs_User_Setting) GetCreatedAt ¶
func (t *GetUserByIDWithOrgs_User_Setting) GetCreatedAt() *time.Time
func (*GetUserByIDWithOrgs_User_Setting) GetCreatedBy ¶
func (t *GetUserByIDWithOrgs_User_Setting) GetCreatedBy() *string
func (*GetUserByIDWithOrgs_User_Setting) GetDefaultOrg ¶
func (t *GetUserByIDWithOrgs_User_Setting) GetDefaultOrg() *GetUserByIDWithOrgs_User_Setting_DefaultOrg
func (*GetUserByIDWithOrgs_User_Setting) GetEmailConfirmed ¶
func (t *GetUserByIDWithOrgs_User_Setting) GetEmailConfirmed() bool
func (*GetUserByIDWithOrgs_User_Setting) GetLocked ¶
func (t *GetUserByIDWithOrgs_User_Setting) GetLocked() bool
func (*GetUserByIDWithOrgs_User_Setting) GetSilencedAt ¶
func (t *GetUserByIDWithOrgs_User_Setting) GetSilencedAt() *time.Time
func (*GetUserByIDWithOrgs_User_Setting) GetStatus ¶
func (t *GetUserByIDWithOrgs_User_Setting) GetStatus() *enums.UserStatus
func (*GetUserByIDWithOrgs_User_Setting) GetSuspendedAt ¶
func (t *GetUserByIDWithOrgs_User_Setting) GetSuspendedAt() *time.Time
func (*GetUserByIDWithOrgs_User_Setting) GetTags ¶
func (t *GetUserByIDWithOrgs_User_Setting) GetTags() []string
func (*GetUserByIDWithOrgs_User_Setting) GetUpdatedAt ¶
func (t *GetUserByIDWithOrgs_User_Setting) GetUpdatedAt() *time.Time
func (*GetUserByIDWithOrgs_User_Setting) GetUpdatedBy ¶
func (t *GetUserByIDWithOrgs_User_Setting) GetUpdatedBy() *string
type GetUserByIDWithOrgs_User_Setting_DefaultOrg ¶
type GetUserByIDWithOrgs_User_Setting_DefaultOrg struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
}
func (*GetUserByIDWithOrgs_User_Setting_DefaultOrg) GetID ¶
func (t *GetUserByIDWithOrgs_User_Setting_DefaultOrg) GetID() string
func (*GetUserByIDWithOrgs_User_Setting_DefaultOrg) GetName ¶
func (t *GetUserByIDWithOrgs_User_Setting_DefaultOrg) GetName() string
func (*GetUserByIDWithOrgs_User_Setting_DefaultOrg) GetPersonalOrg ¶
func (t *GetUserByIDWithOrgs_User_Setting_DefaultOrg) GetPersonalOrg() *bool
type GetUserByID_User ¶
type GetUserByID_User struct {
ID string "json:\"id\" graphql:\"id\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Email string "json:\"email\" graphql:\"email\""
LastSeen *time.Time "json:\"lastSeen,omitempty\" graphql:\"lastSeen\""
Sub *string "json:\"sub,omitempty\" graphql:\"sub\""
AvatarRemoteURL *string "json:\"avatarRemoteURL,omitempty\" graphql:\"avatarRemoteURL\""
AvatarLocalFile *string "json:\"avatarLocalFile,omitempty\" graphql:\"avatarLocalFile\""
AuthProvider enums.AuthProvider "json:\"authProvider\" graphql:\"authProvider\""
Setting GetUserByID_User_Setting "json:\"setting\" graphql:\"setting\""
Organizations []*GetUserByID_User_Organizations "json:\"organizations,omitempty\" graphql:\"organizations\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
}
func (*GetUserByID_User) GetAuthProvider ¶
func (t *GetUserByID_User) GetAuthProvider() *enums.AuthProvider
func (*GetUserByID_User) GetAvatarLocalFile ¶
func (t *GetUserByID_User) GetAvatarLocalFile() *string
func (*GetUserByID_User) GetAvatarRemoteURL ¶
func (t *GetUserByID_User) GetAvatarRemoteURL() *string
func (*GetUserByID_User) GetCreatedAt ¶
func (t *GetUserByID_User) GetCreatedAt() *time.Time
func (*GetUserByID_User) GetCreatedBy ¶
func (t *GetUserByID_User) GetCreatedBy() *string
func (*GetUserByID_User) GetDisplayName ¶
func (t *GetUserByID_User) GetDisplayName() string
func (*GetUserByID_User) GetEmail ¶
func (t *GetUserByID_User) GetEmail() string
func (*GetUserByID_User) GetFirstName ¶
func (t *GetUserByID_User) GetFirstName() string
func (*GetUserByID_User) GetID ¶
func (t *GetUserByID_User) GetID() string
func (*GetUserByID_User) GetLastName ¶
func (t *GetUserByID_User) GetLastName() string
func (*GetUserByID_User) GetLastSeen ¶
func (t *GetUserByID_User) GetLastSeen() *time.Time
func (*GetUserByID_User) GetOrganizations ¶
func (t *GetUserByID_User) GetOrganizations() []*GetUserByID_User_Organizations
func (*GetUserByID_User) GetSetting ¶
func (t *GetUserByID_User) GetSetting() *GetUserByID_User_Setting
func (*GetUserByID_User) GetSub ¶
func (t *GetUserByID_User) GetSub() *string
func (*GetUserByID_User) GetUpdatedAt ¶
func (t *GetUserByID_User) GetUpdatedAt() *time.Time
func (*GetUserByID_User) GetUpdatedBy ¶
func (t *GetUserByID_User) GetUpdatedBy() *string
type GetUserByID_User_Organizations ¶
type GetUserByID_User_Organizations struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
Members []*GetUserByID_User_Organizations_Members "json:\"members,omitempty\" graphql:\"members\""
}
func (*GetUserByID_User_Organizations) GetID ¶
func (t *GetUserByID_User_Organizations) GetID() string
func (*GetUserByID_User_Organizations) GetMembers ¶
func (t *GetUserByID_User_Organizations) GetMembers() []*GetUserByID_User_Organizations_Members
func (*GetUserByID_User_Organizations) GetName ¶
func (t *GetUserByID_User_Organizations) GetName() string
func (*GetUserByID_User_Organizations) GetPersonalOrg ¶
func (t *GetUserByID_User_Organizations) GetPersonalOrg() *bool
type GetUserByID_User_Organizations_Members ¶
type GetUserByID_User_Organizations_Members struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
}
func (*GetUserByID_User_Organizations_Members) GetID ¶
func (t *GetUserByID_User_Organizations_Members) GetID() string
func (*GetUserByID_User_Organizations_Members) GetRole ¶
func (t *GetUserByID_User_Organizations_Members) GetRole() *enums.Role
type GetUserByID_User_Setting ¶
type GetUserByID_User_Setting struct {
EmailConfirmed bool "json:\"emailConfirmed\" graphql:\"emailConfirmed\""
DefaultOrg *GetUserByID_User_Setting_DefaultOrg "json:\"defaultOrg,omitempty\" graphql:\"defaultOrg\""
Locked bool "json:\"locked\" graphql:\"locked\""
Status enums.UserStatus "json:\"status\" graphql:\"status\""
Tags []string "json:\"tags\" graphql:\"tags\""
SuspendedAt *time.Time "json:\"suspendedAt,omitempty\" graphql:\"suspendedAt\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
SilencedAt *time.Time "json:\"silencedAt,omitempty\" graphql:\"silencedAt\""
}
func (*GetUserByID_User_Setting) GetCreatedAt ¶
func (t *GetUserByID_User_Setting) GetCreatedAt() *time.Time
func (*GetUserByID_User_Setting) GetCreatedBy ¶
func (t *GetUserByID_User_Setting) GetCreatedBy() *string
func (*GetUserByID_User_Setting) GetDefaultOrg ¶
func (t *GetUserByID_User_Setting) GetDefaultOrg() *GetUserByID_User_Setting_DefaultOrg
func (*GetUserByID_User_Setting) GetEmailConfirmed ¶
func (t *GetUserByID_User_Setting) GetEmailConfirmed() bool
func (*GetUserByID_User_Setting) GetLocked ¶
func (t *GetUserByID_User_Setting) GetLocked() bool
func (*GetUserByID_User_Setting) GetSilencedAt ¶
func (t *GetUserByID_User_Setting) GetSilencedAt() *time.Time
func (*GetUserByID_User_Setting) GetStatus ¶
func (t *GetUserByID_User_Setting) GetStatus() *enums.UserStatus
func (*GetUserByID_User_Setting) GetSuspendedAt ¶
func (t *GetUserByID_User_Setting) GetSuspendedAt() *time.Time
func (*GetUserByID_User_Setting) GetTags ¶
func (t *GetUserByID_User_Setting) GetTags() []string
func (*GetUserByID_User_Setting) GetUpdatedAt ¶
func (t *GetUserByID_User_Setting) GetUpdatedAt() *time.Time
func (*GetUserByID_User_Setting) GetUpdatedBy ¶
func (t *GetUserByID_User_Setting) GetUpdatedBy() *string
type GetUserByID_User_Setting_DefaultOrg ¶
type GetUserByID_User_Setting_DefaultOrg struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
}
func (*GetUserByID_User_Setting_DefaultOrg) GetID ¶
func (t *GetUserByID_User_Setting_DefaultOrg) GetID() string
func (*GetUserByID_User_Setting_DefaultOrg) GetName ¶
func (t *GetUserByID_User_Setting_DefaultOrg) GetName() string
func (*GetUserByID_User_Setting_DefaultOrg) GetPersonalOrg ¶
func (t *GetUserByID_User_Setting_DefaultOrg) GetPersonalOrg() *bool
type GetUserSettingByID ¶
type GetUserSettingByID struct {
UserSetting GetUserSettingByID_UserSetting "json:\"userSetting\" graphql:\"userSetting\""
}
func (*GetUserSettingByID) GetUserSetting ¶
func (t *GetUserSettingByID) GetUserSetting() *GetUserSettingByID_UserSetting
type GetUserSettingByID_UserSetting ¶
type GetUserSettingByID_UserSetting struct {
ID string "json:\"id\" graphql:\"id\""
SilencedAt *time.Time "json:\"silencedAt,omitempty\" graphql:\"silencedAt\""
Status enums.UserStatus "json:\"status\" graphql:\"status\""
DefaultOrg *GetUserSettingByID_UserSetting_DefaultOrg "json:\"defaultOrg,omitempty\" graphql:\"defaultOrg\""
Tags []string "json:\"tags\" graphql:\"tags\""
Locked bool "json:\"locked\" graphql:\"locked\""
IsTfaEnabled *bool "json:\"isTfaEnabled,omitempty\" graphql:\"isTfaEnabled\""
EmailConfirmed bool "json:\"emailConfirmed\" graphql:\"emailConfirmed\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*GetUserSettingByID_UserSetting) GetCreatedAt ¶
func (t *GetUserSettingByID_UserSetting) GetCreatedAt() *time.Time
func (*GetUserSettingByID_UserSetting) GetCreatedBy ¶
func (t *GetUserSettingByID_UserSetting) GetCreatedBy() *string
func (*GetUserSettingByID_UserSetting) GetDefaultOrg ¶
func (t *GetUserSettingByID_UserSetting) GetDefaultOrg() *GetUserSettingByID_UserSetting_DefaultOrg
func (*GetUserSettingByID_UserSetting) GetDeletedAt ¶
func (t *GetUserSettingByID_UserSetting) GetDeletedAt() *time.Time
func (*GetUserSettingByID_UserSetting) GetDeletedBy ¶
func (t *GetUserSettingByID_UserSetting) GetDeletedBy() *string
func (*GetUserSettingByID_UserSetting) GetEmailConfirmed ¶
func (t *GetUserSettingByID_UserSetting) GetEmailConfirmed() bool
func (*GetUserSettingByID_UserSetting) GetID ¶
func (t *GetUserSettingByID_UserSetting) GetID() string
func (*GetUserSettingByID_UserSetting) GetIsTfaEnabled ¶
func (t *GetUserSettingByID_UserSetting) GetIsTfaEnabled() *bool
func (*GetUserSettingByID_UserSetting) GetLocked ¶
func (t *GetUserSettingByID_UserSetting) GetLocked() bool
func (*GetUserSettingByID_UserSetting) GetSilencedAt ¶
func (t *GetUserSettingByID_UserSetting) GetSilencedAt() *time.Time
func (*GetUserSettingByID_UserSetting) GetStatus ¶
func (t *GetUserSettingByID_UserSetting) GetStatus() *enums.UserStatus
func (*GetUserSettingByID_UserSetting) GetTags ¶
func (t *GetUserSettingByID_UserSetting) GetTags() []string
func (*GetUserSettingByID_UserSetting) GetUpdatedAt ¶
func (t *GetUserSettingByID_UserSetting) GetUpdatedAt() *time.Time
func (*GetUserSettingByID_UserSetting) GetUpdatedBy ¶
func (t *GetUserSettingByID_UserSetting) GetUpdatedBy() *string
type GetUserSettingByID_UserSetting_DefaultOrg ¶
type GetUserSettingByID_UserSetting_DefaultOrg struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
}
func (*GetUserSettingByID_UserSetting_DefaultOrg) GetID ¶
func (t *GetUserSettingByID_UserSetting_DefaultOrg) GetID() string
func (*GetUserSettingByID_UserSetting_DefaultOrg) GetName ¶
func (t *GetUserSettingByID_UserSetting_DefaultOrg) GetName() string
func (*GetUserSettingByID_UserSetting_DefaultOrg) GetPersonalOrg ¶
func (t *GetUserSettingByID_UserSetting_DefaultOrg) GetPersonalOrg() *bool
type GetUserSettingWhere ¶
type GetUserSettingWhere struct {
UserSettings GetUserSettingWhere_UserSettings "json:\"userSettings\" graphql:\"userSettings\""
}
func (*GetUserSettingWhere) GetUserSettings ¶
func (t *GetUserSettingWhere) GetUserSettings() *GetUserSettingWhere_UserSettings
type GetUserSettingWhere_UserSettings ¶
type GetUserSettingWhere_UserSettings struct {
Edges []*GetUserSettingWhere_UserSettings_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetUserSettingWhere_UserSettings) GetEdges ¶
func (t *GetUserSettingWhere_UserSettings) GetEdges() []*GetUserSettingWhere_UserSettings_Edges
type GetUserSettingWhere_UserSettings_Edges ¶
type GetUserSettingWhere_UserSettings_Edges struct {
Node *GetUserSettingWhere_UserSettings_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*GetUserSettingWhere_UserSettings_Edges) GetNode ¶
func (t *GetUserSettingWhere_UserSettings_Edges) GetNode() *GetUserSettingWhere_UserSettings_Edges_Node
type GetUserSettingWhere_UserSettings_Edges_Node ¶
type GetUserSettingWhere_UserSettings_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
SilencedAt *time.Time "json:\"silencedAt,omitempty\" graphql:\"silencedAt\""
Status enums.UserStatus "json:\"status\" graphql:\"status\""
DefaultOrg *GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg "json:\"defaultOrg,omitempty\" graphql:\"defaultOrg\""
Tags []string "json:\"tags\" graphql:\"tags\""
Locked bool "json:\"locked\" graphql:\"locked\""
IsTfaEnabled *bool "json:\"isTfaEnabled,omitempty\" graphql:\"isTfaEnabled\""
EmailConfirmed bool "json:\"emailConfirmed\" graphql:\"emailConfirmed\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetCreatedAt ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetCreatedAt() *time.Time
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetCreatedBy ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetCreatedBy() *string
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetDefaultOrg ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetDefaultOrg() *GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetDeletedAt ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetDeletedAt() *time.Time
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetDeletedBy ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetDeletedBy() *string
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetEmailConfirmed ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetEmailConfirmed() bool
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetID ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetID() string
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetIsTfaEnabled ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetIsTfaEnabled() *bool
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetLocked ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetLocked() bool
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetSilencedAt ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetSilencedAt() *time.Time
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetStatus ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetStatus() *enums.UserStatus
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetTags ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetTags() []string
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetUpdatedAt ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetUpdatedAt() *time.Time
func (*GetUserSettingWhere_UserSettings_Edges_Node) GetUpdatedBy ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node) GetUpdatedBy() *string
type GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg ¶
type GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
}
func (*GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg) GetID ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg) GetID() string
func (*GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg) GetName ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg) GetName() string
func (*GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg) GetPersonalOrg ¶
func (t *GetUserSettingWhere_UserSettings_Edges_Node_DefaultOrg) GetPersonalOrg() *bool
type GetUserSettings ¶
type GetUserSettings struct {
UserSettings GetUserSettings_UserSettings "json:\"userSettings\" graphql:\"userSettings\""
}
func (*GetUserSettings) GetUserSettings ¶
func (t *GetUserSettings) GetUserSettings() *GetUserSettings_UserSettings
type GetUserSettings_UserSettings ¶
type GetUserSettings_UserSettings struct {
Edges []*GetUserSettings_UserSettings_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GetUserSettings_UserSettings) GetEdges ¶
func (t *GetUserSettings_UserSettings) GetEdges() []*GetUserSettings_UserSettings_Edges
type GetUserSettings_UserSettings_Edges ¶
type GetUserSettings_UserSettings_Edges struct {
Node *GetUserSettings_UserSettings_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*GetUserSettings_UserSettings_Edges) GetNode ¶
func (t *GetUserSettings_UserSettings_Edges) GetNode() *GetUserSettings_UserSettings_Edges_Node
type GetUserSettings_UserSettings_Edges_Node ¶
type GetUserSettings_UserSettings_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
SilencedAt *time.Time "json:\"silencedAt,omitempty\" graphql:\"silencedAt\""
Status enums.UserStatus "json:\"status\" graphql:\"status\""
DefaultOrg *GetUserSettings_UserSettings_Edges_Node_DefaultOrg "json:\"defaultOrg,omitempty\" graphql:\"defaultOrg\""
Tags []string "json:\"tags\" graphql:\"tags\""
Locked bool "json:\"locked\" graphql:\"locked\""
IsTfaEnabled *bool "json:\"isTfaEnabled,omitempty\" graphql:\"isTfaEnabled\""
EmailConfirmed bool "json:\"emailConfirmed\" graphql:\"emailConfirmed\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*GetUserSettings_UserSettings_Edges_Node) GetCreatedAt ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetCreatedAt() *time.Time
func (*GetUserSettings_UserSettings_Edges_Node) GetCreatedBy ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetCreatedBy() *string
func (*GetUserSettings_UserSettings_Edges_Node) GetDefaultOrg ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetDefaultOrg() *GetUserSettings_UserSettings_Edges_Node_DefaultOrg
func (*GetUserSettings_UserSettings_Edges_Node) GetDeletedAt ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetDeletedAt() *time.Time
func (*GetUserSettings_UserSettings_Edges_Node) GetDeletedBy ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetDeletedBy() *string
func (*GetUserSettings_UserSettings_Edges_Node) GetEmailConfirmed ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetEmailConfirmed() bool
func (*GetUserSettings_UserSettings_Edges_Node) GetID ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetID() string
func (*GetUserSettings_UserSettings_Edges_Node) GetIsTfaEnabled ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetIsTfaEnabled() *bool
func (*GetUserSettings_UserSettings_Edges_Node) GetLocked ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetLocked() bool
func (*GetUserSettings_UserSettings_Edges_Node) GetSilencedAt ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetSilencedAt() *time.Time
func (*GetUserSettings_UserSettings_Edges_Node) GetStatus ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetStatus() *enums.UserStatus
func (*GetUserSettings_UserSettings_Edges_Node) GetTags ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetTags() []string
func (*GetUserSettings_UserSettings_Edges_Node) GetUpdatedAt ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetUpdatedAt() *time.Time
func (*GetUserSettings_UserSettings_Edges_Node) GetUpdatedBy ¶
func (t *GetUserSettings_UserSettings_Edges_Node) GetUpdatedBy() *string
type GetUserSettings_UserSettings_Edges_Node_DefaultOrg ¶
type GetUserSettings_UserSettings_Edges_Node_DefaultOrg struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
}
func (*GetUserSettings_UserSettings_Edges_Node_DefaultOrg) GetID ¶
func (t *GetUserSettings_UserSettings_Edges_Node_DefaultOrg) GetID() string
func (*GetUserSettings_UserSettings_Edges_Node_DefaultOrg) GetName ¶
func (t *GetUserSettings_UserSettings_Edges_Node_DefaultOrg) GetName() string
func (*GetUserSettings_UserSettings_Edges_Node_DefaultOrg) GetPersonalOrg ¶
func (t *GetUserSettings_UserSettings_Edges_Node_DefaultOrg) GetPersonalOrg() *bool
type Group ¶
type Group struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
// the name of the group - must be unique within the organization
Name string `json:"name"`
// the groups description
Description *string `json:"description,omitempty"`
// the URL to an auto generated gravatar image for the group
GravatarLogoURL *string `json:"gravatarLogoURL,omitempty"`
// the URL to an image uploaded by the customer for the groups avatar image
LogoURL *string `json:"logoURL,omitempty"`
// The group's displayed 'friendly' name
DisplayName string `json:"displayName"`
Owner *Organization `json:"owner"`
Setting *GroupSetting `json:"setting"`
Users []*User `json:"users,omitempty"`
Members []*GroupMembership `json:"members,omitempty"`
}
type GroupConnection ¶
type GroupConnection struct {
// A list of edges.
Edges []*GroupEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type GroupCreatePayload ¶
type GroupCreatePayload struct {
// Created group
Group *Group `json:"group"`
}
Return response for createGroup mutation
type GroupDeletePayload ¶
type GroupDeletePayload struct {
// Deleted group ID
DeletedID string `json:"deletedID"`
}
Return response for deleteGroup mutation
type GroupEdge ¶
type GroupEdge struct {
// The item at the end of the edge.
Node *Group `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type GroupMembership ¶
type GroupMembership struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
Role enums.Role `json:"role"`
GroupID string `json:"groupID"`
UserID string `json:"userID"`
Group *Group `json:"group"`
User *User `json:"user"`
}
func (GroupMembership) IsNode ¶
func (GroupMembership) IsNode()
type GroupMembershipConnection ¶
type GroupMembershipConnection struct {
// A list of edges.
Edges []*GroupMembershipEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type GroupMembershipCreatePayload ¶
type GroupMembershipCreatePayload struct {
// Created groupMembership
GroupMembership *GroupMembership `json:"groupMembership"`
}
Return response for createGroupMembership mutation
type GroupMembershipDeletePayload ¶
type GroupMembershipDeletePayload struct {
// Deleted groupMembership ID
DeletedID string `json:"deletedID"`
}
Return response for deleteGroupMembership mutation
type GroupMembershipEdge ¶
type GroupMembershipEdge struct {
// The item at the end of the edge.
Node *GroupMembership `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type GroupMembershipUpdatePayload ¶
type GroupMembershipUpdatePayload struct {
// Updated groupMembership
GroupMembership *GroupMembership `json:"groupMembership"`
}
Return response for updateGroupMembership mutation
type GroupMembershipWhereInput ¶
type GroupMembershipWhereInput struct {
Not *GroupMembershipWhereInput `json:"not,omitempty"`
And []*GroupMembershipWhereInput `json:"and,omitempty"`
Or []*GroupMembershipWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// role field predicates
Role *enums.Role `json:"role,omitempty"`
RoleNeq *enums.Role `json:"roleNEQ,omitempty"`
RoleIn []enums.Role `json:"roleIn,omitempty"`
RoleNotIn []enums.Role `json:"roleNotIn,omitempty"`
GroupID *string `json:"groupID,omitempty"`
UserID *string `json:"userID,omitempty"`
}
GroupMembershipWhereInput is used for filtering GroupMembership objects. Input was generated by ent.
type GroupOrder ¶
type GroupOrder struct {
// The ordering direction.
Direction OrderDirection `json:"direction"`
// The field by which to order Groups.
Field GroupOrderField `json:"field"`
}
Ordering options for Group connections
type GroupOrderField ¶
type GroupOrderField string
Properties by which Group connections can be ordered.
const ( GroupOrderFieldName GroupOrderField = "name" GroupOrderFieldDisplayName GroupOrderField = "display_name" )
func (GroupOrderField) IsValid ¶
func (e GroupOrderField) IsValid() bool
func (GroupOrderField) MarshalGQL ¶
func (e GroupOrderField) MarshalGQL(w io.Writer)
func (GroupOrderField) String ¶
func (e GroupOrderField) String() string
func (*GroupOrderField) UnmarshalGQL ¶
func (e *GroupOrderField) UnmarshalGQL(v interface{}) error
type GroupSetting ¶
type GroupSetting struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
// whether the group is visible to it's members / owners only or if it's searchable by anyone within the organization
Visibility enums.Visibility `json:"visibility"`
// the policy governing ability to freely join a group, whether it requires an invitation, application, or either
JoinPolicy enums.JoinPolicy `json:"joinPolicy"`
// tags associated with the object
Tags []string `json:"tags,omitempty"`
// whether to sync group members to slack groups
SyncToSlack *bool `json:"syncToSlack,omitempty"`
// whether to sync group members to github groups
SyncToGithub *bool `json:"syncToGithub,omitempty"`
// the group id associated with the settings
GroupID *string `json:"groupID,omitempty"`
Group *Group `json:"group,omitempty"`
}
func (GroupSetting) IsNode ¶
func (GroupSetting) IsNode()
type GroupSettingConnection ¶
type GroupSettingConnection struct {
// A list of edges.
Edges []*GroupSettingEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type GroupSettingCreatePayload ¶
type GroupSettingCreatePayload struct {
// Created groupSetting
GroupSetting *GroupSetting `json:"groupSetting"`
}
Return response for createGroupSetting mutation
type GroupSettingDeletePayload ¶
type GroupSettingDeletePayload struct {
// Deleted groupSetting ID
DeletedID string `json:"deletedID"`
}
Return response for deleteGroupSetting mutation
type GroupSettingEdge ¶
type GroupSettingEdge struct {
// The item at the end of the edge.
Node *GroupSetting `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type GroupSettingUpdatePayload ¶
type GroupSettingUpdatePayload struct {
// Updated groupSetting
GroupSetting *GroupSetting `json:"groupSetting"`
}
Return response for updateGroupSetting mutation
type GroupSettingWhereInput ¶
type GroupSettingWhereInput struct {
Not *GroupSettingWhereInput `json:"not,omitempty"`
And []*GroupSettingWhereInput `json:"and,omitempty"`
Or []*GroupSettingWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// visibility field predicates
Visibility *enums.Visibility `json:"visibility,omitempty"`
VisibilityNeq *enums.Visibility `json:"visibilityNEQ,omitempty"`
VisibilityIn []enums.Visibility `json:"visibilityIn,omitempty"`
VisibilityNotIn []enums.Visibility `json:"visibilityNotIn,omitempty"`
// join_policy field predicates
JoinPolicy *enums.JoinPolicy `json:"joinPolicy,omitempty"`
JoinPolicyNeq *enums.JoinPolicy `json:"joinPolicyNEQ,omitempty"`
JoinPolicyIn []enums.JoinPolicy `json:"joinPolicyIn,omitempty"`
JoinPolicyNotIn []enums.JoinPolicy `json:"joinPolicyNotIn,omitempty"`
// sync_to_slack field predicates
SyncToSlack *bool `json:"syncToSlack,omitempty"`
SyncToSlackNeq *bool `json:"syncToSlackNEQ,omitempty"`
SyncToSlackIsNil *bool `json:"syncToSlackIsNil,omitempty"`
SyncToSlackNotNil *bool `json:"syncToSlackNotNil,omitempty"`
// sync_to_github field predicates
SyncToGithub *bool `json:"syncToGithub,omitempty"`
SyncToGithubNeq *bool `json:"syncToGithubNEQ,omitempty"`
SyncToGithubIsNil *bool `json:"syncToGithubIsNil,omitempty"`
SyncToGithubNotNil *bool `json:"syncToGithubNotNil,omitempty"`
// group_id field predicates
GroupID *string `json:"groupID,omitempty"`
GroupIDNeq *string `json:"groupIDNEQ,omitempty"`
GroupIDIn []string `json:"groupIDIn,omitempty"`
GroupIDNotIn []string `json:"groupIDNotIn,omitempty"`
GroupIDGt *string `json:"groupIDGT,omitempty"`
GroupIDGte *string `json:"groupIDGTE,omitempty"`
GroupIDLt *string `json:"groupIDLT,omitempty"`
GroupIDLte *string `json:"groupIDLTE,omitempty"`
GroupIDContains *string `json:"groupIDContains,omitempty"`
GroupIDHasPrefix *string `json:"groupIDHasPrefix,omitempty"`
GroupIDHasSuffix *string `json:"groupIDHasSuffix,omitempty"`
GroupIDIsNil *bool `json:"groupIDIsNil,omitempty"`
GroupIDNotNil *bool `json:"groupIDNotNil,omitempty"`
GroupIDEqualFold *string `json:"groupIDEqualFold,omitempty"`
GroupIDContainsFold *string `json:"groupIDContainsFold,omitempty"`
// group edge predicates
HasGroup *bool `json:"hasGroup,omitempty"`
HasGroupWith []*GroupWhereInput `json:"hasGroupWith,omitempty"`
}
GroupSettingWhereInput is used for filtering GroupSetting objects. Input was generated by ent.
type GroupUpdatePayload ¶
type GroupUpdatePayload struct {
// Updated group
Group *Group `json:"group"`
}
Return response for updateGroup mutation
type GroupWhereInput ¶
type GroupWhereInput struct {
Not *GroupWhereInput `json:"not,omitempty"`
And []*GroupWhereInput `json:"and,omitempty"`
Or []*GroupWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// name field predicates
Name *string `json:"name,omitempty"`
NameNeq *string `json:"nameNEQ,omitempty"`
NameIn []string `json:"nameIn,omitempty"`
NameNotIn []string `json:"nameNotIn,omitempty"`
NameGt *string `json:"nameGT,omitempty"`
NameGte *string `json:"nameGTE,omitempty"`
NameLt *string `json:"nameLT,omitempty"`
NameLte *string `json:"nameLTE,omitempty"`
NameContains *string `json:"nameContains,omitempty"`
NameHasPrefix *string `json:"nameHasPrefix,omitempty"`
NameHasSuffix *string `json:"nameHasSuffix,omitempty"`
NameEqualFold *string `json:"nameEqualFold,omitempty"`
NameContainsFold *string `json:"nameContainsFold,omitempty"`
// display_name field predicates
DisplayName *string `json:"displayName,omitempty"`
DisplayNameNeq *string `json:"displayNameNEQ,omitempty"`
DisplayNameIn []string `json:"displayNameIn,omitempty"`
DisplayNameNotIn []string `json:"displayNameNotIn,omitempty"`
DisplayNameGt *string `json:"displayNameGT,omitempty"`
DisplayNameGte *string `json:"displayNameGTE,omitempty"`
DisplayNameLt *string `json:"displayNameLT,omitempty"`
DisplayNameLte *string `json:"displayNameLTE,omitempty"`
DisplayNameContains *string `json:"displayNameContains,omitempty"`
DisplayNameHasPrefix *string `json:"displayNameHasPrefix,omitempty"`
DisplayNameHasSuffix *string `json:"displayNameHasSuffix,omitempty"`
DisplayNameEqualFold *string `json:"displayNameEqualFold,omitempty"`
DisplayNameContainsFold *string `json:"displayNameContainsFold,omitempty"`
// owner edge predicates
HasOwner *bool `json:"hasOwner,omitempty"`
HasOwnerWith []*OrganizationWhereInput `json:"hasOwnerWith,omitempty"`
// setting edge predicates
HasSetting *bool `json:"hasSetting,omitempty"`
HasSettingWith []*GroupSettingWhereInput `json:"hasSettingWith,omitempty"`
// users edge predicates
HasUsers *bool `json:"hasUsers,omitempty"`
HasUsersWith []*UserWhereInput `json:"hasUsersWith,omitempty"`
// members edge predicates
HasMembers *bool `json:"hasMembers,omitempty"`
HasMembersWith []*GroupMembershipWhereInput `json:"hasMembersWith,omitempty"`
}
GroupWhereInput is used for filtering Group objects. Input was generated by ent.
type GroupsWhere ¶
type GroupsWhere struct {
Groups GroupsWhere_Groups "json:\"groups\" graphql:\"groups\""
}
func (*GroupsWhere) GetGroups ¶
func (t *GroupsWhere) GetGroups() *GroupsWhere_Groups
type GroupsWhere_Groups ¶
type GroupsWhere_Groups struct {
Edges []*GroupsWhere_Groups_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*GroupsWhere_Groups) GetEdges ¶
func (t *GroupsWhere_Groups) GetEdges() []*GroupsWhere_Groups_Edges
type GroupsWhere_Groups_Edges ¶
type GroupsWhere_Groups_Edges struct {
Node *GroupsWhere_Groups_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*GroupsWhere_Groups_Edges) GetNode ¶
func (t *GroupsWhere_Groups_Edges) GetNode() *GroupsWhere_Groups_Edges_Node
type GroupsWhere_Groups_Edges_Node ¶
type GroupsWhere_Groups_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Owner GroupsWhere_Groups_Edges_Node_Owner "json:\"owner\" graphql:\"owner\""
LogoURL *string "json:\"logoURL,omitempty\" graphql:\"logoURL\""
Setting GroupsWhere_Groups_Edges_Node_Setting "json:\"setting\" graphql:\"setting\""
Members []*GroupsWhere_Groups_Edges_Node_Members "json:\"members,omitempty\" graphql:\"members\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*GroupsWhere_Groups_Edges_Node) GetCreatedAt ¶
func (t *GroupsWhere_Groups_Edges_Node) GetCreatedAt() *time.Time
func (*GroupsWhere_Groups_Edges_Node) GetCreatedBy ¶
func (t *GroupsWhere_Groups_Edges_Node) GetCreatedBy() *string
func (*GroupsWhere_Groups_Edges_Node) GetDescription ¶
func (t *GroupsWhere_Groups_Edges_Node) GetDescription() *string
func (*GroupsWhere_Groups_Edges_Node) GetDisplayName ¶
func (t *GroupsWhere_Groups_Edges_Node) GetDisplayName() string
func (*GroupsWhere_Groups_Edges_Node) GetID ¶
func (t *GroupsWhere_Groups_Edges_Node) GetID() string
func (*GroupsWhere_Groups_Edges_Node) GetLogoURL ¶
func (t *GroupsWhere_Groups_Edges_Node) GetLogoURL() *string
func (*GroupsWhere_Groups_Edges_Node) GetMembers ¶
func (t *GroupsWhere_Groups_Edges_Node) GetMembers() []*GroupsWhere_Groups_Edges_Node_Members
func (*GroupsWhere_Groups_Edges_Node) GetName ¶
func (t *GroupsWhere_Groups_Edges_Node) GetName() string
func (*GroupsWhere_Groups_Edges_Node) GetOwner ¶
func (t *GroupsWhere_Groups_Edges_Node) GetOwner() *GroupsWhere_Groups_Edges_Node_Owner
func (*GroupsWhere_Groups_Edges_Node) GetSetting ¶
func (t *GroupsWhere_Groups_Edges_Node) GetSetting() *GroupsWhere_Groups_Edges_Node_Setting
func (*GroupsWhere_Groups_Edges_Node) GetUpdatedAt ¶
func (t *GroupsWhere_Groups_Edges_Node) GetUpdatedAt() *time.Time
func (*GroupsWhere_Groups_Edges_Node) GetUpdatedBy ¶
func (t *GroupsWhere_Groups_Edges_Node) GetUpdatedBy() *string
type GroupsWhere_Groups_Edges_Node_Members ¶
type GroupsWhere_Groups_Edges_Node_Members struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
User GroupsWhere_Groups_Edges_Node_Members_User "json:\"user\" graphql:\"user\""
}
func (*GroupsWhere_Groups_Edges_Node_Members) GetID ¶
func (t *GroupsWhere_Groups_Edges_Node_Members) GetID() string
func (*GroupsWhere_Groups_Edges_Node_Members) GetRole ¶
func (t *GroupsWhere_Groups_Edges_Node_Members) GetRole() *enums.Role
func (*GroupsWhere_Groups_Edges_Node_Members) GetUser ¶
func (t *GroupsWhere_Groups_Edges_Node_Members) GetUser() *GroupsWhere_Groups_Edges_Node_Members_User
type GroupsWhere_Groups_Edges_Node_Members_User ¶
type GroupsWhere_Groups_Edges_Node_Members_User struct {
ID string "json:\"id\" graphql:\"id\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
}
func (*GroupsWhere_Groups_Edges_Node_Members_User) GetFirstName ¶
func (t *GroupsWhere_Groups_Edges_Node_Members_User) GetFirstName() string
func (*GroupsWhere_Groups_Edges_Node_Members_User) GetID ¶
func (t *GroupsWhere_Groups_Edges_Node_Members_User) GetID() string
func (*GroupsWhere_Groups_Edges_Node_Members_User) GetLastName ¶
func (t *GroupsWhere_Groups_Edges_Node_Members_User) GetLastName() string
type GroupsWhere_Groups_Edges_Node_Owner ¶
type GroupsWhere_Groups_Edges_Node_Owner struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*GroupsWhere_Groups_Edges_Node_Owner) GetID ¶
func (t *GroupsWhere_Groups_Edges_Node_Owner) GetID() string
type GroupsWhere_Groups_Edges_Node_Setting ¶
type GroupsWhere_Groups_Edges_Node_Setting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Visibility enums.Visibility "json:\"visibility\" graphql:\"visibility\""
JoinPolicy enums.JoinPolicy "json:\"joinPolicy\" graphql:\"joinPolicy\""
SyncToSlack *bool "json:\"syncToSlack,omitempty\" graphql:\"syncToSlack\""
SyncToGithub *bool "json:\"syncToGithub,omitempty\" graphql:\"syncToGithub\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
}
func (*GroupsWhere_Groups_Edges_Node_Setting) GetCreatedAt ¶
func (t *GroupsWhere_Groups_Edges_Node_Setting) GetCreatedAt() *time.Time
func (*GroupsWhere_Groups_Edges_Node_Setting) GetCreatedBy ¶
func (t *GroupsWhere_Groups_Edges_Node_Setting) GetCreatedBy() *string
func (*GroupsWhere_Groups_Edges_Node_Setting) GetID ¶
func (t *GroupsWhere_Groups_Edges_Node_Setting) GetID() string
func (*GroupsWhere_Groups_Edges_Node_Setting) GetJoinPolicy ¶
func (t *GroupsWhere_Groups_Edges_Node_Setting) GetJoinPolicy() *enums.JoinPolicy
func (*GroupsWhere_Groups_Edges_Node_Setting) GetSyncToGithub ¶
func (t *GroupsWhere_Groups_Edges_Node_Setting) GetSyncToGithub() *bool
func (*GroupsWhere_Groups_Edges_Node_Setting) GetSyncToSlack ¶
func (t *GroupsWhere_Groups_Edges_Node_Setting) GetSyncToSlack() *bool
func (*GroupsWhere_Groups_Edges_Node_Setting) GetTags ¶
func (t *GroupsWhere_Groups_Edges_Node_Setting) GetTags() []string
func (*GroupsWhere_Groups_Edges_Node_Setting) GetUpdatedAt ¶
func (t *GroupsWhere_Groups_Edges_Node_Setting) GetUpdatedAt() *time.Time
func (*GroupsWhere_Groups_Edges_Node_Setting) GetUpdatedBy ¶
func (t *GroupsWhere_Groups_Edges_Node_Setting) GetUpdatedBy() *string
func (*GroupsWhere_Groups_Edges_Node_Setting) GetVisibility ¶
func (t *GroupsWhere_Groups_Edges_Node_Setting) GetVisibility() *enums.Visibility
type Integration ¶
type Integration struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
OwnerID string `json:"ownerID"`
// the name of the integration - must be unique within the organization
Name string `json:"name"`
// a description of the integration
Description *string `json:"description,omitempty"`
Kind *string `json:"kind,omitempty"`
SecretName *string `json:"secretName,omitempty"`
Owner *Organization `json:"owner"`
}
func (Integration) IsNode ¶
func (Integration) IsNode()
type IntegrationConnection ¶
type IntegrationConnection struct {
// A list of edges.
Edges []*IntegrationEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type IntegrationCreatePayload ¶
type IntegrationCreatePayload struct {
// Created integration
Integration *Integration `json:"integration"`
}
Return response for createIntegration mutation
type IntegrationDeletePayload ¶
type IntegrationDeletePayload struct {
// Deleted integration ID
DeletedID string `json:"deletedID"`
}
Return response for deleteIntegration mutation
type IntegrationEdge ¶
type IntegrationEdge struct {
// The item at the end of the edge.
Node *Integration `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type IntegrationOrder ¶
type IntegrationOrder struct {
// The ordering direction.
Direction OrderDirection `json:"direction"`
// The field by which to order Integrations.
Field IntegrationOrderField `json:"field"`
}
Ordering options for Integration connections
type IntegrationOrderField ¶
type IntegrationOrderField string
Properties by which Integration connections can be ordered.
const ( IntegrationOrderFieldName IntegrationOrderField = "name" IntegrationOrderFieldKind IntegrationOrderField = "kind" )
func (IntegrationOrderField) IsValid ¶
func (e IntegrationOrderField) IsValid() bool
func (IntegrationOrderField) MarshalGQL ¶
func (e IntegrationOrderField) MarshalGQL(w io.Writer)
func (IntegrationOrderField) String ¶
func (e IntegrationOrderField) String() string
func (*IntegrationOrderField) UnmarshalGQL ¶
func (e *IntegrationOrderField) UnmarshalGQL(v interface{}) error
type IntegrationUpdatePayload ¶
type IntegrationUpdatePayload struct {
// Updated integration
Integration *Integration `json:"integration"`
}
Return response for updateIntegration mutation
type IntegrationWhereInput ¶
type IntegrationWhereInput struct {
Not *IntegrationWhereInput `json:"not,omitempty"`
And []*IntegrationWhereInput `json:"and,omitempty"`
Or []*IntegrationWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// owner_id field predicates
OwnerID *string `json:"ownerID,omitempty"`
OwnerIDNeq *string `json:"ownerIDNEQ,omitempty"`
OwnerIDIn []string `json:"ownerIDIn,omitempty"`
OwnerIDNotIn []string `json:"ownerIDNotIn,omitempty"`
OwnerIDGt *string `json:"ownerIDGT,omitempty"`
OwnerIDGte *string `json:"ownerIDGTE,omitempty"`
OwnerIDLt *string `json:"ownerIDLT,omitempty"`
OwnerIDLte *string `json:"ownerIDLTE,omitempty"`
OwnerIDContains *string `json:"ownerIDContains,omitempty"`
OwnerIDHasPrefix *string `json:"ownerIDHasPrefix,omitempty"`
OwnerIDHasSuffix *string `json:"ownerIDHasSuffix,omitempty"`
OwnerIDEqualFold *string `json:"ownerIDEqualFold,omitempty"`
OwnerIDContainsFold *string `json:"ownerIDContainsFold,omitempty"`
// name field predicates
Name *string `json:"name,omitempty"`
NameNeq *string `json:"nameNEQ,omitempty"`
NameIn []string `json:"nameIn,omitempty"`
NameNotIn []string `json:"nameNotIn,omitempty"`
NameGt *string `json:"nameGT,omitempty"`
NameGte *string `json:"nameGTE,omitempty"`
NameLt *string `json:"nameLT,omitempty"`
NameLte *string `json:"nameLTE,omitempty"`
NameContains *string `json:"nameContains,omitempty"`
NameHasPrefix *string `json:"nameHasPrefix,omitempty"`
NameHasSuffix *string `json:"nameHasSuffix,omitempty"`
NameEqualFold *string `json:"nameEqualFold,omitempty"`
NameContainsFold *string `json:"nameContainsFold,omitempty"`
// kind field predicates
Kind *string `json:"kind,omitempty"`
KindNeq *string `json:"kindNEQ,omitempty"`
KindIn []string `json:"kindIn,omitempty"`
KindNotIn []string `json:"kindNotIn,omitempty"`
KindGt *string `json:"kindGT,omitempty"`
KindGte *string `json:"kindGTE,omitempty"`
KindLt *string `json:"kindLT,omitempty"`
KindLte *string `json:"kindLTE,omitempty"`
KindContains *string `json:"kindContains,omitempty"`
KindHasPrefix *string `json:"kindHasPrefix,omitempty"`
KindHasSuffix *string `json:"kindHasSuffix,omitempty"`
KindIsNil *bool `json:"kindIsNil,omitempty"`
KindNotNil *bool `json:"kindNotNil,omitempty"`
KindEqualFold *string `json:"kindEqualFold,omitempty"`
KindContainsFold *string `json:"kindContainsFold,omitempty"`
// secret_name field predicates
SecretName *string `json:"secretName,omitempty"`
SecretNameNeq *string `json:"secretNameNEQ,omitempty"`
SecretNameIn []string `json:"secretNameIn,omitempty"`
SecretNameNotIn []string `json:"secretNameNotIn,omitempty"`
SecretNameGt *string `json:"secretNameGT,omitempty"`
SecretNameGte *string `json:"secretNameGTE,omitempty"`
SecretNameLt *string `json:"secretNameLT,omitempty"`
SecretNameLte *string `json:"secretNameLTE,omitempty"`
SecretNameContains *string `json:"secretNameContains,omitempty"`
SecretNameHasPrefix *string `json:"secretNameHasPrefix,omitempty"`
SecretNameHasSuffix *string `json:"secretNameHasSuffix,omitempty"`
SecretNameIsNil *bool `json:"secretNameIsNil,omitempty"`
SecretNameNotNil *bool `json:"secretNameNotNil,omitempty"`
SecretNameEqualFold *string `json:"secretNameEqualFold,omitempty"`
SecretNameContainsFold *string `json:"secretNameContainsFold,omitempty"`
// owner edge predicates
HasOwner *bool `json:"hasOwner,omitempty"`
HasOwnerWith []*OrganizationWhereInput `json:"hasOwnerWith,omitempty"`
}
IntegrationWhereInput is used for filtering Integration objects. Input was generated by ent.
type Invite ¶
type Invite struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
OwnerID string `json:"ownerID"`
// the expiration date of the invitation token which defaults to 14 days in the future from creation
Expires time.Time `json:"expires"`
// the email used as input to generate the invitation token and is the destination person the invitation is sent to who is required to accept to join the organization
Recipient string `json:"recipient"`
// the status of the invitation
Status enums.InviteStatus `json:"status"`
Role enums.Role `json:"role"`
// the number of attempts made to perform email send of the invitation, maximum of 5
SendAttempts int64 `json:"sendAttempts"`
// the user who initiated the invitation
RequestorID string `json:"requestorID"`
Owner *Organization `json:"owner"`
}
type InviteConnection ¶
type InviteConnection struct {
// A list of edges.
Edges []*InviteEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type InviteCreatePayload ¶
type InviteCreatePayload struct {
// Created invite
Invite *Invite `json:"invite"`
}
Return response for createInvite mutation
type InviteDeletePayload ¶
type InviteDeletePayload struct {
// Deleted invite ID
DeletedID string `json:"deletedID"`
}
Return response for deleteInvite mutation
type InviteEdge ¶
type InviteEdge struct {
// The item at the end of the edge.
Node *Invite `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type InviteUpdatePayload ¶
type InviteUpdatePayload struct {
// Updated invite
Invite *Invite `json:"invite"`
}
Return response for updateInvite mutation
type InviteWhereInput ¶
type InviteWhereInput struct {
Not *InviteWhereInput `json:"not,omitempty"`
And []*InviteWhereInput `json:"and,omitempty"`
Or []*InviteWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// owner_id field predicates
OwnerID *string `json:"ownerID,omitempty"`
OwnerIDNeq *string `json:"ownerIDNEQ,omitempty"`
OwnerIDIn []string `json:"ownerIDIn,omitempty"`
OwnerIDNotIn []string `json:"ownerIDNotIn,omitempty"`
OwnerIDGt *string `json:"ownerIDGT,omitempty"`
OwnerIDGte *string `json:"ownerIDGTE,omitempty"`
OwnerIDLt *string `json:"ownerIDLT,omitempty"`
OwnerIDLte *string `json:"ownerIDLTE,omitempty"`
OwnerIDContains *string `json:"ownerIDContains,omitempty"`
OwnerIDHasPrefix *string `json:"ownerIDHasPrefix,omitempty"`
OwnerIDHasSuffix *string `json:"ownerIDHasSuffix,omitempty"`
OwnerIDEqualFold *string `json:"ownerIDEqualFold,omitempty"`
OwnerIDContainsFold *string `json:"ownerIDContainsFold,omitempty"`
// expires field predicates
Expires *time.Time `json:"expires,omitempty"`
ExpiresNeq *time.Time `json:"expiresNEQ,omitempty"`
ExpiresIn []*time.Time `json:"expiresIn,omitempty"`
ExpiresNotIn []*time.Time `json:"expiresNotIn,omitempty"`
ExpiresGt *time.Time `json:"expiresGT,omitempty"`
ExpiresGte *time.Time `json:"expiresGTE,omitempty"`
ExpiresLt *time.Time `json:"expiresLT,omitempty"`
ExpiresLte *time.Time `json:"expiresLTE,omitempty"`
// recipient field predicates
Recipient *string `json:"recipient,omitempty"`
RecipientNeq *string `json:"recipientNEQ,omitempty"`
RecipientIn []string `json:"recipientIn,omitempty"`
RecipientNotIn []string `json:"recipientNotIn,omitempty"`
RecipientGt *string `json:"recipientGT,omitempty"`
RecipientGte *string `json:"recipientGTE,omitempty"`
RecipientLt *string `json:"recipientLT,omitempty"`
RecipientLte *string `json:"recipientLTE,omitempty"`
RecipientContains *string `json:"recipientContains,omitempty"`
RecipientHasPrefix *string `json:"recipientHasPrefix,omitempty"`
RecipientHasSuffix *string `json:"recipientHasSuffix,omitempty"`
RecipientEqualFold *string `json:"recipientEqualFold,omitempty"`
RecipientContainsFold *string `json:"recipientContainsFold,omitempty"`
// status field predicates
Status *enums.InviteStatus `json:"status,omitempty"`
StatusNeq *enums.InviteStatus `json:"statusNEQ,omitempty"`
StatusIn []enums.InviteStatus `json:"statusIn,omitempty"`
StatusNotIn []enums.InviteStatus `json:"statusNotIn,omitempty"`
// role field predicates
Role *enums.Role `json:"role,omitempty"`
RoleNeq *enums.Role `json:"roleNEQ,omitempty"`
RoleIn []enums.Role `json:"roleIn,omitempty"`
RoleNotIn []enums.Role `json:"roleNotIn,omitempty"`
// send_attempts field predicates
SendAttempts *int64 `json:"sendAttempts,omitempty"`
SendAttemptsNeq *int64 `json:"sendAttemptsNEQ,omitempty"`
SendAttemptsIn []int64 `json:"sendAttemptsIn,omitempty"`
SendAttemptsNotIn []int64 `json:"sendAttemptsNotIn,omitempty"`
SendAttemptsGt *int64 `json:"sendAttemptsGT,omitempty"`
SendAttemptsGte *int64 `json:"sendAttemptsGTE,omitempty"`
SendAttemptsLt *int64 `json:"sendAttemptsLT,omitempty"`
SendAttemptsLte *int64 `json:"sendAttemptsLTE,omitempty"`
// requestor_id field predicates
RequestorID *string `json:"requestorID,omitempty"`
RequestorIDNeq *string `json:"requestorIDNEQ,omitempty"`
RequestorIDIn []string `json:"requestorIDIn,omitempty"`
RequestorIDNotIn []string `json:"requestorIDNotIn,omitempty"`
RequestorIDGt *string `json:"requestorIDGT,omitempty"`
RequestorIDGte *string `json:"requestorIDGTE,omitempty"`
RequestorIDLt *string `json:"requestorIDLT,omitempty"`
RequestorIDLte *string `json:"requestorIDLTE,omitempty"`
RequestorIDContains *string `json:"requestorIDContains,omitempty"`
RequestorIDHasPrefix *string `json:"requestorIDHasPrefix,omitempty"`
RequestorIDHasSuffix *string `json:"requestorIDHasSuffix,omitempty"`
RequestorIDEqualFold *string `json:"requestorIDEqualFold,omitempty"`
RequestorIDContainsFold *string `json:"requestorIDContainsFold,omitempty"`
// owner edge predicates
HasOwner *bool `json:"hasOwner,omitempty"`
HasOwnerWith []*OrganizationWhereInput `json:"hasOwnerWith,omitempty"`
}
InviteWhereInput is used for filtering Invite objects. Input was generated by ent.
type InvitesByOrgID ¶
type InvitesByOrgID struct {
Invites InvitesByOrgID_Invites "json:\"invites\" graphql:\"invites\""
}
func (*InvitesByOrgID) GetInvites ¶
func (t *InvitesByOrgID) GetInvites() *InvitesByOrgID_Invites
type InvitesByOrgID_Invites ¶
type InvitesByOrgID_Invites struct {
Edges []*InvitesByOrgID_Invites_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*InvitesByOrgID_Invites) GetEdges ¶
func (t *InvitesByOrgID_Invites) GetEdges() []*InvitesByOrgID_Invites_Edges
type InvitesByOrgID_Invites_Edges ¶
type InvitesByOrgID_Invites_Edges struct {
Node *InvitesByOrgID_Invites_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*InvitesByOrgID_Invites_Edges) GetNode ¶
func (t *InvitesByOrgID_Invites_Edges) GetNode() *InvitesByOrgID_Invites_Edges_Node
type InvitesByOrgID_Invites_Edges_Node ¶
type InvitesByOrgID_Invites_Edges_Node struct {
Owner InvitesByOrgID_Invites_Edges_Node_Owner "json:\"owner\" graphql:\"owner\""
}
func (*InvitesByOrgID_Invites_Edges_Node) GetOwner ¶
func (t *InvitesByOrgID_Invites_Edges_Node) GetOwner() *InvitesByOrgID_Invites_Edges_Node_Owner
type InvitesByOrgID_Invites_Edges_Node_Owner ¶
type InvitesByOrgID_Invites_Edges_Node_Owner struct {
ID string "json:\"id\" graphql:\"id\""
Invites []*InvitesByOrgID_Invites_Edges_Node_Owner_Invites "json:\"invites,omitempty\" graphql:\"invites\""
}
func (*InvitesByOrgID_Invites_Edges_Node_Owner) GetID ¶
func (t *InvitesByOrgID_Invites_Edges_Node_Owner) GetID() string
func (*InvitesByOrgID_Invites_Edges_Node_Owner) GetInvites ¶
func (t *InvitesByOrgID_Invites_Edges_Node_Owner) GetInvites() []*InvitesByOrgID_Invites_Edges_Node_Owner_Invites
type InvitesByOrgID_Invites_Edges_Node_Owner_Invites ¶
type InvitesByOrgID_Invites_Edges_Node_Owner_Invites struct {
Recipient string "json:\"recipient\" graphql:\"recipient\""
Status enums.InviteStatus "json:\"status\" graphql:\"status\""
RequestorID string "json:\"requestorID\" graphql:\"requestorID\""
Role enums.Role "json:\"role\" graphql:\"role\""
SendAttempts int64 "json:\"sendAttempts\" graphql:\"sendAttempts\""
}
func (*InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetRecipient ¶
func (t *InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetRecipient() string
func (*InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetRequestorID ¶
func (t *InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetRequestorID() string
func (*InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetRole ¶
func (t *InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetRole() *enums.Role
func (*InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetSendAttempts ¶
func (t *InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetSendAttempts() int64
func (*InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetStatus ¶
func (t *InvitesByOrgID_Invites_Edges_Node_Owner_Invites) GetStatus() *enums.InviteStatus
type OauthProvider ¶
type OauthProvider struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
// the oauth provider's name
Name string `json:"name"`
// the client id for the oauth provider
ClientID string `json:"clientID"`
// the client secret
ClientSecret string `json:"clientSecret"`
// the redirect url
RedirectURL string `json:"redirectURL"`
// the scopes
Scopes string `json:"scopes"`
// the auth url of the provider
AuthURL string `json:"authURL"`
// the token url of the provider
TokenURL string `json:"tokenURL"`
// the auth style, 0: auto detect 1: third party log in 2: log in with username and password
AuthStyle string `json:"authStyle"`
// the URL to request user information by token
InfoURL string `json:"infoURL"`
Owner *Organization `json:"owner,omitempty"`
}
func (OauthProvider) IsNode ¶
func (OauthProvider) IsNode()
type OauthProviderConnection ¶
type OauthProviderConnection struct {
// A list of edges.
Edges []*OauthProviderEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type OauthProviderCreatePayload ¶
type OauthProviderCreatePayload struct {
// Created oauthProvider
OauthProvider *OauthProvider `json:"oauthProvider"`
}
Return response for createOauthProvider mutation
type OauthProviderDeletePayload ¶
type OauthProviderDeletePayload struct {
// Deleted oauthProvider ID
DeletedID string `json:"deletedID"`
}
Return response for deleteOauthProvider mutation
type OauthProviderEdge ¶
type OauthProviderEdge struct {
// The item at the end of the edge.
Node *OauthProvider `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type OauthProviderUpdatePayload ¶
type OauthProviderUpdatePayload struct {
// Updated oauthProvider
OauthProvider *OauthProvider `json:"oauthProvider"`
}
Return response for updateOauthProvider mutation
type OauthProviderWhereInput ¶
type OauthProviderWhereInput struct {
Not *OauthProviderWhereInput `json:"not,omitempty"`
And []*OauthProviderWhereInput `json:"and,omitempty"`
Or []*OauthProviderWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// name field predicates
Name *string `json:"name,omitempty"`
NameNeq *string `json:"nameNEQ,omitempty"`
NameIn []string `json:"nameIn,omitempty"`
NameNotIn []string `json:"nameNotIn,omitempty"`
NameGt *string `json:"nameGT,omitempty"`
NameGte *string `json:"nameGTE,omitempty"`
NameLt *string `json:"nameLT,omitempty"`
NameLte *string `json:"nameLTE,omitempty"`
NameContains *string `json:"nameContains,omitempty"`
NameHasPrefix *string `json:"nameHasPrefix,omitempty"`
NameHasSuffix *string `json:"nameHasSuffix,omitempty"`
NameEqualFold *string `json:"nameEqualFold,omitempty"`
NameContainsFold *string `json:"nameContainsFold,omitempty"`
// client_id field predicates
ClientID *string `json:"clientID,omitempty"`
ClientIDNeq *string `json:"clientIDNEQ,omitempty"`
ClientIDIn []string `json:"clientIDIn,omitempty"`
ClientIDNotIn []string `json:"clientIDNotIn,omitempty"`
ClientIDGt *string `json:"clientIDGT,omitempty"`
ClientIDGte *string `json:"clientIDGTE,omitempty"`
ClientIDLt *string `json:"clientIDLT,omitempty"`
ClientIDLte *string `json:"clientIDLTE,omitempty"`
ClientIDContains *string `json:"clientIDContains,omitempty"`
ClientIDHasPrefix *string `json:"clientIDHasPrefix,omitempty"`
ClientIDHasSuffix *string `json:"clientIDHasSuffix,omitempty"`
ClientIDEqualFold *string `json:"clientIDEqualFold,omitempty"`
ClientIDContainsFold *string `json:"clientIDContainsFold,omitempty"`
// client_secret field predicates
ClientSecret *string `json:"clientSecret,omitempty"`
ClientSecretNeq *string `json:"clientSecretNEQ,omitempty"`
ClientSecretIn []string `json:"clientSecretIn,omitempty"`
ClientSecretNotIn []string `json:"clientSecretNotIn,omitempty"`
ClientSecretGt *string `json:"clientSecretGT,omitempty"`
ClientSecretGte *string `json:"clientSecretGTE,omitempty"`
ClientSecretLt *string `json:"clientSecretLT,omitempty"`
ClientSecretLte *string `json:"clientSecretLTE,omitempty"`
ClientSecretContains *string `json:"clientSecretContains,omitempty"`
ClientSecretHasPrefix *string `json:"clientSecretHasPrefix,omitempty"`
ClientSecretHasSuffix *string `json:"clientSecretHasSuffix,omitempty"`
ClientSecretEqualFold *string `json:"clientSecretEqualFold,omitempty"`
ClientSecretContainsFold *string `json:"clientSecretContainsFold,omitempty"`
// redirect_url field predicates
RedirectURL *string `json:"redirectURL,omitempty"`
RedirectURLNeq *string `json:"redirectURLNEQ,omitempty"`
RedirectURLIn []string `json:"redirectURLIn,omitempty"`
RedirectURLNotIn []string `json:"redirectURLNotIn,omitempty"`
RedirectURLGt *string `json:"redirectURLGT,omitempty"`
RedirectURLGte *string `json:"redirectURLGTE,omitempty"`
RedirectURLLt *string `json:"redirectURLLT,omitempty"`
RedirectURLLte *string `json:"redirectURLLTE,omitempty"`
RedirectURLContains *string `json:"redirectURLContains,omitempty"`
RedirectURLHasPrefix *string `json:"redirectURLHasPrefix,omitempty"`
RedirectURLHasSuffix *string `json:"redirectURLHasSuffix,omitempty"`
RedirectURLEqualFold *string `json:"redirectURLEqualFold,omitempty"`
RedirectURLContainsFold *string `json:"redirectURLContainsFold,omitempty"`
// scopes field predicates
Scopes *string `json:"scopes,omitempty"`
ScopesNeq *string `json:"scopesNEQ,omitempty"`
ScopesIn []string `json:"scopesIn,omitempty"`
ScopesNotIn []string `json:"scopesNotIn,omitempty"`
ScopesGt *string `json:"scopesGT,omitempty"`
ScopesGte *string `json:"scopesGTE,omitempty"`
ScopesLt *string `json:"scopesLT,omitempty"`
ScopesLte *string `json:"scopesLTE,omitempty"`
ScopesContains *string `json:"scopesContains,omitempty"`
ScopesHasPrefix *string `json:"scopesHasPrefix,omitempty"`
ScopesHasSuffix *string `json:"scopesHasSuffix,omitempty"`
ScopesEqualFold *string `json:"scopesEqualFold,omitempty"`
ScopesContainsFold *string `json:"scopesContainsFold,omitempty"`
// auth_url field predicates
AuthURL *string `json:"authURL,omitempty"`
AuthURLNeq *string `json:"authURLNEQ,omitempty"`
AuthURLIn []string `json:"authURLIn,omitempty"`
AuthURLNotIn []string `json:"authURLNotIn,omitempty"`
AuthURLGt *string `json:"authURLGT,omitempty"`
AuthURLGte *string `json:"authURLGTE,omitempty"`
AuthURLLt *string `json:"authURLLT,omitempty"`
AuthURLLte *string `json:"authURLLTE,omitempty"`
AuthURLContains *string `json:"authURLContains,omitempty"`
AuthURLHasPrefix *string `json:"authURLHasPrefix,omitempty"`
AuthURLHasSuffix *string `json:"authURLHasSuffix,omitempty"`
AuthURLEqualFold *string `json:"authURLEqualFold,omitempty"`
AuthURLContainsFold *string `json:"authURLContainsFold,omitempty"`
// token_url field predicates
TokenURL *string `json:"tokenURL,omitempty"`
TokenURLNeq *string `json:"tokenURLNEQ,omitempty"`
TokenURLIn []string `json:"tokenURLIn,omitempty"`
TokenURLNotIn []string `json:"tokenURLNotIn,omitempty"`
TokenURLGt *string `json:"tokenURLGT,omitempty"`
TokenURLGte *string `json:"tokenURLGTE,omitempty"`
TokenURLLt *string `json:"tokenURLLT,omitempty"`
TokenURLLte *string `json:"tokenURLLTE,omitempty"`
TokenURLContains *string `json:"tokenURLContains,omitempty"`
TokenURLHasPrefix *string `json:"tokenURLHasPrefix,omitempty"`
TokenURLHasSuffix *string `json:"tokenURLHasSuffix,omitempty"`
TokenURLEqualFold *string `json:"tokenURLEqualFold,omitempty"`
TokenURLContainsFold *string `json:"tokenURLContainsFold,omitempty"`
// auth_style field predicates
AuthStyle *string `json:"authStyle,omitempty"`
AuthStyleNeq *string `json:"authStyleNEQ,omitempty"`
AuthStyleIn []string `json:"authStyleIn,omitempty"`
AuthStyleNotIn []string `json:"authStyleNotIn,omitempty"`
AuthStyleGt *string `json:"authStyleGT,omitempty"`
AuthStyleGte *string `json:"authStyleGTE,omitempty"`
AuthStyleLt *string `json:"authStyleLT,omitempty"`
AuthStyleLte *string `json:"authStyleLTE,omitempty"`
// info_url field predicates
InfoURL *string `json:"infoURL,omitempty"`
InfoURLNeq *string `json:"infoURLNEQ,omitempty"`
InfoURLIn []string `json:"infoURLIn,omitempty"`
InfoURLNotIn []string `json:"infoURLNotIn,omitempty"`
InfoURLGt *string `json:"infoURLGT,omitempty"`
InfoURLGte *string `json:"infoURLGTE,omitempty"`
InfoURLLt *string `json:"infoURLLT,omitempty"`
InfoURLLte *string `json:"infoURLLTE,omitempty"`
InfoURLContains *string `json:"infoURLContains,omitempty"`
InfoURLHasPrefix *string `json:"infoURLHasPrefix,omitempty"`
InfoURLHasSuffix *string `json:"infoURLHasSuffix,omitempty"`
InfoURLEqualFold *string `json:"infoURLEqualFold,omitempty"`
InfoURLContainsFold *string `json:"infoURLContainsFold,omitempty"`
// owner edge predicates
HasOwner *bool `json:"hasOwner,omitempty"`
HasOwnerWith []*OrganizationWhereInput `json:"hasOwnerWith,omitempty"`
}
OauthProviderWhereInput is used for filtering OauthProvider objects. Input was generated by ent.
type OhAuthTooToken ¶
type OhAuthTooToken struct {
ID string `json:"id"`
ClientID string `json:"clientID"`
Scopes []string `json:"scopes,omitempty"`
Nonce string `json:"nonce"`
ClaimsUserID string `json:"claimsUserID"`
ClaimsUsername string `json:"claimsUsername"`
ClaimsEmail string `json:"claimsEmail"`
ClaimsEmailVerified bool `json:"claimsEmailVerified"`
ClaimsGroups []string `json:"claimsGroups,omitempty"`
ClaimsPreferredUsername string `json:"claimsPreferredUsername"`
ConnectorID string `json:"connectorID"`
ConnectorData []string `json:"connectorData,omitempty"`
LastUsed time.Time `json:"lastUsed"`
}
func (OhAuthTooToken) IsNode ¶
func (OhAuthTooToken) IsNode()
type OhAuthTooTokenConnection ¶
type OhAuthTooTokenConnection struct {
// A list of edges.
Edges []*OhAuthTooTokenEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type OhAuthTooTokenCreatePayload ¶
type OhAuthTooTokenCreatePayload struct {
// Created ohAuthTooToken
OhAuthTooToken *OhAuthTooToken `json:"ohAuthTooToken"`
}
Return response for createOhAuthTooToken mutation
type OhAuthTooTokenDeletePayload ¶
type OhAuthTooTokenDeletePayload struct {
// Deleted ohAuthTooToken ID
DeletedID string `json:"deletedID"`
}
Return response for deleteOhAuthTooToken mutation
type OhAuthTooTokenEdge ¶
type OhAuthTooTokenEdge struct {
// The item at the end of the edge.
Node *OhAuthTooToken `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type OhAuthTooTokenUpdatePayload ¶
type OhAuthTooTokenUpdatePayload struct {
// Updated ohAuthTooToken
OhAuthTooToken *OhAuthTooToken `json:"ohAuthTooToken"`
}
Return response for updateOhAuthTooToken mutation
type OhAuthTooTokenWhereInput ¶
type OhAuthTooTokenWhereInput struct {
Not *OhAuthTooTokenWhereInput `json:"not,omitempty"`
And []*OhAuthTooTokenWhereInput `json:"and,omitempty"`
Or []*OhAuthTooTokenWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// client_id field predicates
ClientID *string `json:"clientID,omitempty"`
ClientIDNeq *string `json:"clientIDNEQ,omitempty"`
ClientIDIn []string `json:"clientIDIn,omitempty"`
ClientIDNotIn []string `json:"clientIDNotIn,omitempty"`
ClientIDGt *string `json:"clientIDGT,omitempty"`
ClientIDGte *string `json:"clientIDGTE,omitempty"`
ClientIDLt *string `json:"clientIDLT,omitempty"`
ClientIDLte *string `json:"clientIDLTE,omitempty"`
ClientIDContains *string `json:"clientIDContains,omitempty"`
ClientIDHasPrefix *string `json:"clientIDHasPrefix,omitempty"`
ClientIDHasSuffix *string `json:"clientIDHasSuffix,omitempty"`
ClientIDEqualFold *string `json:"clientIDEqualFold,omitempty"`
ClientIDContainsFold *string `json:"clientIDContainsFold,omitempty"`
// nonce field predicates
Nonce *string `json:"nonce,omitempty"`
NonceNeq *string `json:"nonceNEQ,omitempty"`
NonceIn []string `json:"nonceIn,omitempty"`
NonceNotIn []string `json:"nonceNotIn,omitempty"`
NonceGt *string `json:"nonceGT,omitempty"`
NonceGte *string `json:"nonceGTE,omitempty"`
NonceLt *string `json:"nonceLT,omitempty"`
NonceLte *string `json:"nonceLTE,omitempty"`
NonceContains *string `json:"nonceContains,omitempty"`
NonceHasPrefix *string `json:"nonceHasPrefix,omitempty"`
NonceHasSuffix *string `json:"nonceHasSuffix,omitempty"`
NonceEqualFold *string `json:"nonceEqualFold,omitempty"`
NonceContainsFold *string `json:"nonceContainsFold,omitempty"`
// claims_user_id field predicates
ClaimsUserID *string `json:"claimsUserID,omitempty"`
ClaimsUserIDNeq *string `json:"claimsUserIDNEQ,omitempty"`
ClaimsUserIDIn []string `json:"claimsUserIDIn,omitempty"`
ClaimsUserIDNotIn []string `json:"claimsUserIDNotIn,omitempty"`
ClaimsUserIDGt *string `json:"claimsUserIDGT,omitempty"`
ClaimsUserIDGte *string `json:"claimsUserIDGTE,omitempty"`
ClaimsUserIDLt *string `json:"claimsUserIDLT,omitempty"`
ClaimsUserIDLte *string `json:"claimsUserIDLTE,omitempty"`
ClaimsUserIDContains *string `json:"claimsUserIDContains,omitempty"`
ClaimsUserIDHasPrefix *string `json:"claimsUserIDHasPrefix,omitempty"`
ClaimsUserIDHasSuffix *string `json:"claimsUserIDHasSuffix,omitempty"`
ClaimsUserIDEqualFold *string `json:"claimsUserIDEqualFold,omitempty"`
ClaimsUserIDContainsFold *string `json:"claimsUserIDContainsFold,omitempty"`
// claims_username field predicates
ClaimsUsername *string `json:"claimsUsername,omitempty"`
ClaimsUsernameNeq *string `json:"claimsUsernameNEQ,omitempty"`
ClaimsUsernameIn []string `json:"claimsUsernameIn,omitempty"`
ClaimsUsernameNotIn []string `json:"claimsUsernameNotIn,omitempty"`
ClaimsUsernameGt *string `json:"claimsUsernameGT,omitempty"`
ClaimsUsernameGte *string `json:"claimsUsernameGTE,omitempty"`
ClaimsUsernameLt *string `json:"claimsUsernameLT,omitempty"`
ClaimsUsernameLte *string `json:"claimsUsernameLTE,omitempty"`
ClaimsUsernameContains *string `json:"claimsUsernameContains,omitempty"`
ClaimsUsernameHasPrefix *string `json:"claimsUsernameHasPrefix,omitempty"`
ClaimsUsernameHasSuffix *string `json:"claimsUsernameHasSuffix,omitempty"`
ClaimsUsernameEqualFold *string `json:"claimsUsernameEqualFold,omitempty"`
ClaimsUsernameContainsFold *string `json:"claimsUsernameContainsFold,omitempty"`
// claims_email field predicates
ClaimsEmail *string `json:"claimsEmail,omitempty"`
ClaimsEmailNeq *string `json:"claimsEmailNEQ,omitempty"`
ClaimsEmailIn []string `json:"claimsEmailIn,omitempty"`
ClaimsEmailNotIn []string `json:"claimsEmailNotIn,omitempty"`
ClaimsEmailGt *string `json:"claimsEmailGT,omitempty"`
ClaimsEmailGte *string `json:"claimsEmailGTE,omitempty"`
ClaimsEmailLt *string `json:"claimsEmailLT,omitempty"`
ClaimsEmailLte *string `json:"claimsEmailLTE,omitempty"`
ClaimsEmailContains *string `json:"claimsEmailContains,omitempty"`
ClaimsEmailHasPrefix *string `json:"claimsEmailHasPrefix,omitempty"`
ClaimsEmailHasSuffix *string `json:"claimsEmailHasSuffix,omitempty"`
ClaimsEmailEqualFold *string `json:"claimsEmailEqualFold,omitempty"`
ClaimsEmailContainsFold *string `json:"claimsEmailContainsFold,omitempty"`
// claims_email_verified field predicates
ClaimsEmailVerified *bool `json:"claimsEmailVerified,omitempty"`
ClaimsEmailVerifiedNeq *bool `json:"claimsEmailVerifiedNEQ,omitempty"`
// claims_preferred_username field predicates
ClaimsPreferredUsername *string `json:"claimsPreferredUsername,omitempty"`
ClaimsPreferredUsernameNeq *string `json:"claimsPreferredUsernameNEQ,omitempty"`
ClaimsPreferredUsernameIn []string `json:"claimsPreferredUsernameIn,omitempty"`
ClaimsPreferredUsernameNotIn []string `json:"claimsPreferredUsernameNotIn,omitempty"`
ClaimsPreferredUsernameGt *string `json:"claimsPreferredUsernameGT,omitempty"`
ClaimsPreferredUsernameGte *string `json:"claimsPreferredUsernameGTE,omitempty"`
ClaimsPreferredUsernameLt *string `json:"claimsPreferredUsernameLT,omitempty"`
ClaimsPreferredUsernameLte *string `json:"claimsPreferredUsernameLTE,omitempty"`
ClaimsPreferredUsernameContains *string `json:"claimsPreferredUsernameContains,omitempty"`
ClaimsPreferredUsernameHasPrefix *string `json:"claimsPreferredUsernameHasPrefix,omitempty"`
ClaimsPreferredUsernameHasSuffix *string `json:"claimsPreferredUsernameHasSuffix,omitempty"`
ClaimsPreferredUsernameEqualFold *string `json:"claimsPreferredUsernameEqualFold,omitempty"`
ClaimsPreferredUsernameContainsFold *string `json:"claimsPreferredUsernameContainsFold,omitempty"`
// connector_id field predicates
ConnectorID *string `json:"connectorID,omitempty"`
ConnectorIDNeq *string `json:"connectorIDNEQ,omitempty"`
ConnectorIDIn []string `json:"connectorIDIn,omitempty"`
ConnectorIDNotIn []string `json:"connectorIDNotIn,omitempty"`
ConnectorIDGt *string `json:"connectorIDGT,omitempty"`
ConnectorIDGte *string `json:"connectorIDGTE,omitempty"`
ConnectorIDLt *string `json:"connectorIDLT,omitempty"`
ConnectorIDLte *string `json:"connectorIDLTE,omitempty"`
ConnectorIDContains *string `json:"connectorIDContains,omitempty"`
ConnectorIDHasPrefix *string `json:"connectorIDHasPrefix,omitempty"`
ConnectorIDHasSuffix *string `json:"connectorIDHasSuffix,omitempty"`
ConnectorIDEqualFold *string `json:"connectorIDEqualFold,omitempty"`
ConnectorIDContainsFold *string `json:"connectorIDContainsFold,omitempty"`
// last_used field predicates
LastUsed *time.Time `json:"lastUsed,omitempty"`
LastUsedNeq *time.Time `json:"lastUsedNEQ,omitempty"`
LastUsedIn []*time.Time `json:"lastUsedIn,omitempty"`
LastUsedNotIn []*time.Time `json:"lastUsedNotIn,omitempty"`
LastUsedGt *time.Time `json:"lastUsedGT,omitempty"`
LastUsedGte *time.Time `json:"lastUsedGTE,omitempty"`
LastUsedLt *time.Time `json:"lastUsedLT,omitempty"`
LastUsedLte *time.Time `json:"lastUsedLTE,omitempty"`
}
OhAuthTooTokenWhereInput is used for filtering OhAuthTooToken objects. Input was generated by ent.
type OrderDirection ¶
type OrderDirection string
Possible directions in which to order a list of items when provided an `orderBy` argument.
const ( // Specifies an ascending order for a given `orderBy` argument. OrderDirectionAsc OrderDirection = "ASC" // Specifies a descending order for a given `orderBy` argument. OrderDirectionDesc OrderDirection = "DESC" )
func (OrderDirection) IsValid ¶
func (e OrderDirection) IsValid() bool
func (OrderDirection) MarshalGQL ¶
func (e OrderDirection) MarshalGQL(w io.Writer)
func (OrderDirection) String ¶
func (e OrderDirection) String() string
func (*OrderDirection) UnmarshalGQL ¶
func (e *OrderDirection) UnmarshalGQL(v interface{}) error
type OrgMembership ¶
type OrgMembership struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
Role enums.Role `json:"role"`
OrganizationID string `json:"organizationID"`
UserID string `json:"userID"`
Organization *Organization `json:"organization"`
User *User `json:"user"`
}
func (OrgMembership) IsNode ¶
func (OrgMembership) IsNode()
type OrgMembershipConnection ¶
type OrgMembershipConnection struct {
// A list of edges.
Edges []*OrgMembershipEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type OrgMembershipCreatePayload ¶
type OrgMembershipCreatePayload struct {
// Created orgMembership
OrgMembership *OrgMembership `json:"orgMembership"`
}
Return response for createOrgMembership mutation
type OrgMembershipDeletePayload ¶
type OrgMembershipDeletePayload struct {
// Deleted orgMembership ID
DeletedID string `json:"deletedID"`
}
Return response for deleteOrgMembership mutation
type OrgMembershipEdge ¶
type OrgMembershipEdge struct {
// The item at the end of the edge.
Node *OrgMembership `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type OrgMembershipUpdatePayload ¶
type OrgMembershipUpdatePayload struct {
// Updated orgMembership
OrgMembership *OrgMembership `json:"orgMembership"`
}
Return response for updateOrgMembership mutation
type OrgMembershipWhereInput ¶
type OrgMembershipWhereInput struct {
Not *OrgMembershipWhereInput `json:"not,omitempty"`
And []*OrgMembershipWhereInput `json:"and,omitempty"`
Or []*OrgMembershipWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// role field predicates
Role *enums.Role `json:"role,omitempty"`
RoleNeq *enums.Role `json:"roleNEQ,omitempty"`
RoleIn []enums.Role `json:"roleIn,omitempty"`
RoleNotIn []enums.Role `json:"roleNotIn,omitempty"`
OrganizationID *string `json:"organizationID,omitempty"`
UserID *string `json:"userID,omitempty"`
}
OrgMembershipWhereInput is used for filtering OrgMembership objects. Input was generated by ent.
type Organization ¶
type Organization struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
// the name of the organization
Name string `json:"name"`
// The organization's displayed 'friendly' name
DisplayName string `json:"displayName"`
// An optional description of the organization
Description *string `json:"description,omitempty"`
// orgs directly associated with a user
PersonalOrg *bool `json:"personalOrg,omitempty"`
// URL of the user's remote avatar
AvatarRemoteURL *string `json:"avatarRemoteURL,omitempty"`
// Whether the organization has a dedicated database
DedicatedDb bool `json:"dedicatedDb"`
Parent *Organization `json:"parent,omitempty"`
Children *OrganizationConnection `json:"children"`
Groups []*Group `json:"groups,omitempty"`
Templates []*Template `json:"templates,omitempty"`
Integrations []*Integration `json:"integrations,omitempty"`
Setting *OrganizationSetting `json:"setting,omitempty"`
Entitlements []*Entitlement `json:"entitlements,omitempty"`
PersonalAccessTokens []*PersonalAccessToken `json:"personalAccessTokens,omitempty"`
Oauthprovider []*OauthProvider `json:"oauthprovider,omitempty"`
Users []*User `json:"users,omitempty"`
Invites []*Invite `json:"invites,omitempty"`
Subscribers []*Subscriber `json:"subscribers,omitempty"`
Members []*OrgMembership `json:"members,omitempty"`
}
func (Organization) IsNode ¶
func (Organization) IsNode()
type OrganizationConnection ¶
type OrganizationConnection struct {
// A list of edges.
Edges []*OrganizationEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type OrganizationCreatePayload ¶
type OrganizationCreatePayload struct {
// Created organization
Organization *Organization `json:"organization"`
}
Return response for createOrganization mutation
type OrganizationDeletePayload ¶
type OrganizationDeletePayload struct {
// Deleted organization ID
DeletedID string `json:"deletedID"`
}
Return response for deleteOrganization mutation
type OrganizationEdge ¶
type OrganizationEdge struct {
// The item at the end of the edge.
Node *Organization `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type OrganizationHistory ¶
type OrganizationHistory struct {
ID string `json:"id"`
HistoryTime time.Time `json:"historyTime"`
Ref *string `json:"ref,omitempty"`
Operation enthistory.OpType `json:"operation"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
// the name of the organization
Name string `json:"name"`
// The organization's displayed 'friendly' name
DisplayName string `json:"displayName"`
// An optional description of the organization
Description *string `json:"description,omitempty"`
// orgs directly associated with a user
PersonalOrg *bool `json:"personalOrg,omitempty"`
// URL of the user's remote avatar
AvatarRemoteURL *string `json:"avatarRemoteURL,omitempty"`
// Whether the organization has a dedicated database
DedicatedDb bool `json:"dedicatedDb"`
}
func (OrganizationHistory) IsNode ¶
func (OrganizationHistory) IsNode()
type OrganizationHistoryOrder ¶
type OrganizationHistoryOrder struct {
// The ordering direction.
Direction OrderDirection `json:"direction"`
// The field by which to order OrganizationHistories.
Field OrganizationHistoryOrderField `json:"field"`
}
Ordering options for OrganizationHistory connections
type OrganizationHistoryOrderField ¶
type OrganizationHistoryOrderField string
Properties by which OrganizationHistory connections can be ordered.
const ( OrganizationHistoryOrderFieldName OrganizationHistoryOrderField = "name" OrganizationHistoryOrderFieldDisplayName OrganizationHistoryOrderField = "display_name" )
func (OrganizationHistoryOrderField) IsValid ¶
func (e OrganizationHistoryOrderField) IsValid() bool
func (OrganizationHistoryOrderField) MarshalGQL ¶
func (e OrganizationHistoryOrderField) MarshalGQL(w io.Writer)
func (OrganizationHistoryOrderField) String ¶
func (e OrganizationHistoryOrderField) String() string
func (*OrganizationHistoryOrderField) UnmarshalGQL ¶
func (e *OrganizationHistoryOrderField) UnmarshalGQL(v interface{}) error
type OrganizationHistoryWhereInput ¶
type OrganizationHistoryWhereInput struct {
Not *OrganizationHistoryWhereInput `json:"not,omitempty"`
And []*OrganizationHistoryWhereInput `json:"and,omitempty"`
Or []*OrganizationHistoryWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// history_time field predicates
HistoryTime *time.Time `json:"historyTime,omitempty"`
HistoryTimeNeq *time.Time `json:"historyTimeNEQ,omitempty"`
HistoryTimeIn []*time.Time `json:"historyTimeIn,omitempty"`
HistoryTimeNotIn []*time.Time `json:"historyTimeNotIn,omitempty"`
HistoryTimeGt *time.Time `json:"historyTimeGT,omitempty"`
HistoryTimeGte *time.Time `json:"historyTimeGTE,omitempty"`
HistoryTimeLt *time.Time `json:"historyTimeLT,omitempty"`
HistoryTimeLte *time.Time `json:"historyTimeLTE,omitempty"`
// ref field predicates
Ref *string `json:"ref,omitempty"`
RefNeq *string `json:"refNEQ,omitempty"`
RefIn []string `json:"refIn,omitempty"`
RefNotIn []string `json:"refNotIn,omitempty"`
RefGt *string `json:"refGT,omitempty"`
RefGte *string `json:"refGTE,omitempty"`
RefLt *string `json:"refLT,omitempty"`
RefLte *string `json:"refLTE,omitempty"`
RefContains *string `json:"refContains,omitempty"`
RefHasPrefix *string `json:"refHasPrefix,omitempty"`
RefHasSuffix *string `json:"refHasSuffix,omitempty"`
RefIsNil *bool `json:"refIsNil,omitempty"`
RefNotNil *bool `json:"refNotNil,omitempty"`
RefEqualFold *string `json:"refEqualFold,omitempty"`
RefContainsFold *string `json:"refContainsFold,omitempty"`
// operation field predicates
Operation *enthistory.OpType `json:"operation,omitempty"`
OperationNeq *enthistory.OpType `json:"operationNEQ,omitempty"`
OperationIn []enthistory.OpType `json:"operationIn,omitempty"`
OperationNotIn []enthistory.OpType `json:"operationNotIn,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// display_name field predicates
DisplayName *string `json:"displayName,omitempty"`
DisplayNameNeq *string `json:"displayNameNEQ,omitempty"`
DisplayNameIn []string `json:"displayNameIn,omitempty"`
DisplayNameNotIn []string `json:"displayNameNotIn,omitempty"`
DisplayNameGt *string `json:"displayNameGT,omitempty"`
DisplayNameGte *string `json:"displayNameGTE,omitempty"`
DisplayNameLt *string `json:"displayNameLT,omitempty"`
DisplayNameLte *string `json:"displayNameLTE,omitempty"`
DisplayNameContains *string `json:"displayNameContains,omitempty"`
DisplayNameHasPrefix *string `json:"displayNameHasPrefix,omitempty"`
DisplayNameHasSuffix *string `json:"displayNameHasSuffix,omitempty"`
DisplayNameEqualFold *string `json:"displayNameEqualFold,omitempty"`
DisplayNameContainsFold *string `json:"displayNameContainsFold,omitempty"`
// parent_organization_id field predicates
ParentOrganizationID *string `json:"parentOrganizationID,omitempty"`
ParentOrganizationIDNeq *string `json:"parentOrganizationIDNEQ,omitempty"`
ParentOrganizationIDIn []string `json:"parentOrganizationIDIn,omitempty"`
ParentOrganizationIDNotIn []string `json:"parentOrganizationIDNotIn,omitempty"`
ParentOrganizationIDGt *string `json:"parentOrganizationIDGT,omitempty"`
ParentOrganizationIDGte *string `json:"parentOrganizationIDGTE,omitempty"`
ParentOrganizationIDLt *string `json:"parentOrganizationIDLT,omitempty"`
ParentOrganizationIDLte *string `json:"parentOrganizationIDLTE,omitempty"`
ParentOrganizationIDContains *string `json:"parentOrganizationIDContains,omitempty"`
ParentOrganizationIDHasPrefix *string `json:"parentOrganizationIDHasPrefix,omitempty"`
ParentOrganizationIDHasSuffix *string `json:"parentOrganizationIDHasSuffix,omitempty"`
ParentOrganizationIDIsNil *bool `json:"parentOrganizationIDIsNil,omitempty"`
ParentOrganizationIDNotNil *bool `json:"parentOrganizationIDNotNil,omitempty"`
ParentOrganizationIDEqualFold *string `json:"parentOrganizationIDEqualFold,omitempty"`
ParentOrganizationIDContainsFold *string `json:"parentOrganizationIDContainsFold,omitempty"`
// personal_org field predicates
PersonalOrg *bool `json:"personalOrg,omitempty"`
PersonalOrgNeq *bool `json:"personalOrgNEQ,omitempty"`
PersonalOrgIsNil *bool `json:"personalOrgIsNil,omitempty"`
PersonalOrgNotNil *bool `json:"personalOrgNotNil,omitempty"`
// avatar_remote_url field predicates
AvatarRemoteURL *string `json:"avatarRemoteURL,omitempty"`
AvatarRemoteURLNeq *string `json:"avatarRemoteURLNEQ,omitempty"`
AvatarRemoteURLIn []string `json:"avatarRemoteURLIn,omitempty"`
AvatarRemoteURLNotIn []string `json:"avatarRemoteURLNotIn,omitempty"`
AvatarRemoteURLGt *string `json:"avatarRemoteURLGT,omitempty"`
AvatarRemoteURLGte *string `json:"avatarRemoteURLGTE,omitempty"`
AvatarRemoteURLLt *string `json:"avatarRemoteURLLT,omitempty"`
AvatarRemoteURLLte *string `json:"avatarRemoteURLLTE,omitempty"`
AvatarRemoteURLContains *string `json:"avatarRemoteURLContains,omitempty"`
AvatarRemoteURLHasPrefix *string `json:"avatarRemoteURLHasPrefix,omitempty"`
AvatarRemoteURLHasSuffix *string `json:"avatarRemoteURLHasSuffix,omitempty"`
AvatarRemoteURLIsNil *bool `json:"avatarRemoteURLIsNil,omitempty"`
AvatarRemoteURLNotNil *bool `json:"avatarRemoteURLNotNil,omitempty"`
AvatarRemoteURLEqualFold *string `json:"avatarRemoteURLEqualFold,omitempty"`
AvatarRemoteURLContainsFold *string `json:"avatarRemoteURLContainsFold,omitempty"`
}
OrganizationHistoryWhereInput is used for filtering OrganizationHistory objects. Input was generated by ent.
type OrganizationOrder ¶
type OrganizationOrder struct {
// The ordering direction.
Direction OrderDirection `json:"direction"`
// The field by which to order Organizations.
Field OrganizationOrderField `json:"field"`
}
Ordering options for Organization connections
type OrganizationOrderField ¶
type OrganizationOrderField string
Properties by which Organization connections can be ordered.
const ( OrganizationOrderFieldName OrganizationOrderField = "name" OrganizationOrderFieldDisplayName OrganizationOrderField = "display_name" )
func (OrganizationOrderField) IsValid ¶
func (e OrganizationOrderField) IsValid() bool
func (OrganizationOrderField) MarshalGQL ¶
func (e OrganizationOrderField) MarshalGQL(w io.Writer)
func (OrganizationOrderField) String ¶
func (e OrganizationOrderField) String() string
func (*OrganizationOrderField) UnmarshalGQL ¶
func (e *OrganizationOrderField) UnmarshalGQL(v interface{}) error
type OrganizationSetting ¶
type OrganizationSetting struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
// domains associated with the organization
Domains []string `json:"domains,omitempty"`
// Name of the person to contact for billing
BillingContact *string `json:"billingContact,omitempty"`
// Email address of the person to contact for billing
BillingEmail *string `json:"billingEmail,omitempty"`
// Phone number to contact for billing
BillingPhone *string `json:"billingPhone,omitempty"`
// Address to send billing information to
BillingAddress *string `json:"billingAddress,omitempty"`
// Usually government-issued tax ID or business ID such as ABN in Australia
TaxIdentifier *string `json:"taxIdentifier,omitempty"`
// tags associated with the object
Tags []string `json:"tags,omitempty"`
// geographical location of the organization
GeoLocation *enums.Region `json:"geoLocation,omitempty"`
// the ID of the organization the settings belong to
OrganizationID *string `json:"organizationID,omitempty"`
Organization *Organization `json:"organization,omitempty"`
}
func (OrganizationSetting) IsNode ¶
func (OrganizationSetting) IsNode()
type OrganizationSettingConnection ¶
type OrganizationSettingConnection struct {
// A list of edges.
Edges []*OrganizationSettingEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type OrganizationSettingCreatePayload ¶
type OrganizationSettingCreatePayload struct {
// Created organizationSetting
OrganizationSetting *OrganizationSetting `json:"organizationSetting"`
}
Return response for createOrganizationSetting mutation
type OrganizationSettingDeletePayload ¶
type OrganizationSettingDeletePayload struct {
// Deleted organizationSetting ID
DeletedID string `json:"deletedID"`
}
Return response for deleteOrganizationSetting mutation
type OrganizationSettingEdge ¶
type OrganizationSettingEdge struct {
// The item at the end of the edge.
Node *OrganizationSetting `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type OrganizationSettingHistory ¶
type OrganizationSettingHistory struct {
ID string `json:"id"`
HistoryTime time.Time `json:"historyTime"`
Ref *string `json:"ref,omitempty"`
Operation enthistory.OpType `json:"operation"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
// domains associated with the organization
Domains []string `json:"domains,omitempty"`
// Name of the person to contact for billing
BillingContact *string `json:"billingContact,omitempty"`
// Email address of the person to contact for billing
BillingEmail *string `json:"billingEmail,omitempty"`
// Phone number to contact for billing
BillingPhone *string `json:"billingPhone,omitempty"`
// Address to send billing information to
BillingAddress *string `json:"billingAddress,omitempty"`
// Usually government-issued tax ID or business ID such as ABN in Australia
TaxIdentifier *string `json:"taxIdentifier,omitempty"`
// tags associated with the object
Tags []string `json:"tags,omitempty"`
// geographical location of the organization
GeoLocation *enums.Region `json:"geoLocation,omitempty"`
// the ID of the organization the settings belong to
OrganizationID *string `json:"organizationID,omitempty"`
}
func (OrganizationSettingHistory) IsNode ¶
func (OrganizationSettingHistory) IsNode()
type OrganizationSettingHistoryWhereInput ¶
type OrganizationSettingHistoryWhereInput struct {
Not *OrganizationSettingHistoryWhereInput `json:"not,omitempty"`
And []*OrganizationSettingHistoryWhereInput `json:"and,omitempty"`
Or []*OrganizationSettingHistoryWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// history_time field predicates
HistoryTime *time.Time `json:"historyTime,omitempty"`
HistoryTimeNeq *time.Time `json:"historyTimeNEQ,omitempty"`
HistoryTimeIn []*time.Time `json:"historyTimeIn,omitempty"`
HistoryTimeNotIn []*time.Time `json:"historyTimeNotIn,omitempty"`
HistoryTimeGt *time.Time `json:"historyTimeGT,omitempty"`
HistoryTimeGte *time.Time `json:"historyTimeGTE,omitempty"`
HistoryTimeLt *time.Time `json:"historyTimeLT,omitempty"`
HistoryTimeLte *time.Time `json:"historyTimeLTE,omitempty"`
// ref field predicates
Ref *string `json:"ref,omitempty"`
RefNeq *string `json:"refNEQ,omitempty"`
RefIn []string `json:"refIn,omitempty"`
RefNotIn []string `json:"refNotIn,omitempty"`
RefGt *string `json:"refGT,omitempty"`
RefGte *string `json:"refGTE,omitempty"`
RefLt *string `json:"refLT,omitempty"`
RefLte *string `json:"refLTE,omitempty"`
RefContains *string `json:"refContains,omitempty"`
RefHasPrefix *string `json:"refHasPrefix,omitempty"`
RefHasSuffix *string `json:"refHasSuffix,omitempty"`
RefIsNil *bool `json:"refIsNil,omitempty"`
RefNotNil *bool `json:"refNotNil,omitempty"`
RefEqualFold *string `json:"refEqualFold,omitempty"`
RefContainsFold *string `json:"refContainsFold,omitempty"`
// operation field predicates
Operation *enthistory.OpType `json:"operation,omitempty"`
OperationNeq *enthistory.OpType `json:"operationNEQ,omitempty"`
OperationIn []enthistory.OpType `json:"operationIn,omitempty"`
OperationNotIn []enthistory.OpType `json:"operationNotIn,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// billing_contact field predicates
BillingContact *string `json:"billingContact,omitempty"`
BillingContactNeq *string `json:"billingContactNEQ,omitempty"`
BillingContactIn []string `json:"billingContactIn,omitempty"`
BillingContactNotIn []string `json:"billingContactNotIn,omitempty"`
BillingContactGt *string `json:"billingContactGT,omitempty"`
BillingContactGte *string `json:"billingContactGTE,omitempty"`
BillingContactLt *string `json:"billingContactLT,omitempty"`
BillingContactLte *string `json:"billingContactLTE,omitempty"`
BillingContactContains *string `json:"billingContactContains,omitempty"`
BillingContactHasPrefix *string `json:"billingContactHasPrefix,omitempty"`
BillingContactHasSuffix *string `json:"billingContactHasSuffix,omitempty"`
BillingContactIsNil *bool `json:"billingContactIsNil,omitempty"`
BillingContactNotNil *bool `json:"billingContactNotNil,omitempty"`
BillingContactEqualFold *string `json:"billingContactEqualFold,omitempty"`
BillingContactContainsFold *string `json:"billingContactContainsFold,omitempty"`
// billing_email field predicates
BillingEmail *string `json:"billingEmail,omitempty"`
BillingEmailNeq *string `json:"billingEmailNEQ,omitempty"`
BillingEmailIn []string `json:"billingEmailIn,omitempty"`
BillingEmailNotIn []string `json:"billingEmailNotIn,omitempty"`
BillingEmailGt *string `json:"billingEmailGT,omitempty"`
BillingEmailGte *string `json:"billingEmailGTE,omitempty"`
BillingEmailLt *string `json:"billingEmailLT,omitempty"`
BillingEmailLte *string `json:"billingEmailLTE,omitempty"`
BillingEmailContains *string `json:"billingEmailContains,omitempty"`
BillingEmailHasPrefix *string `json:"billingEmailHasPrefix,omitempty"`
BillingEmailHasSuffix *string `json:"billingEmailHasSuffix,omitempty"`
BillingEmailIsNil *bool `json:"billingEmailIsNil,omitempty"`
BillingEmailNotNil *bool `json:"billingEmailNotNil,omitempty"`
BillingEmailEqualFold *string `json:"billingEmailEqualFold,omitempty"`
BillingEmailContainsFold *string `json:"billingEmailContainsFold,omitempty"`
// billing_phone field predicates
BillingPhone *string `json:"billingPhone,omitempty"`
BillingPhoneNeq *string `json:"billingPhoneNEQ,omitempty"`
BillingPhoneIn []string `json:"billingPhoneIn,omitempty"`
BillingPhoneNotIn []string `json:"billingPhoneNotIn,omitempty"`
BillingPhoneGt *string `json:"billingPhoneGT,omitempty"`
BillingPhoneGte *string `json:"billingPhoneGTE,omitempty"`
BillingPhoneLt *string `json:"billingPhoneLT,omitempty"`
BillingPhoneLte *string `json:"billingPhoneLTE,omitempty"`
BillingPhoneContains *string `json:"billingPhoneContains,omitempty"`
BillingPhoneHasPrefix *string `json:"billingPhoneHasPrefix,omitempty"`
BillingPhoneHasSuffix *string `json:"billingPhoneHasSuffix,omitempty"`
BillingPhoneIsNil *bool `json:"billingPhoneIsNil,omitempty"`
BillingPhoneNotNil *bool `json:"billingPhoneNotNil,omitempty"`
BillingPhoneEqualFold *string `json:"billingPhoneEqualFold,omitempty"`
BillingPhoneContainsFold *string `json:"billingPhoneContainsFold,omitempty"`
// billing_address field predicates
BillingAddress *string `json:"billingAddress,omitempty"`
BillingAddressNeq *string `json:"billingAddressNEQ,omitempty"`
BillingAddressIn []string `json:"billingAddressIn,omitempty"`
BillingAddressNotIn []string `json:"billingAddressNotIn,omitempty"`
BillingAddressGt *string `json:"billingAddressGT,omitempty"`
BillingAddressGte *string `json:"billingAddressGTE,omitempty"`
BillingAddressLt *string `json:"billingAddressLT,omitempty"`
BillingAddressLte *string `json:"billingAddressLTE,omitempty"`
BillingAddressContains *string `json:"billingAddressContains,omitempty"`
BillingAddressHasPrefix *string `json:"billingAddressHasPrefix,omitempty"`
BillingAddressHasSuffix *string `json:"billingAddressHasSuffix,omitempty"`
BillingAddressIsNil *bool `json:"billingAddressIsNil,omitempty"`
BillingAddressNotNil *bool `json:"billingAddressNotNil,omitempty"`
BillingAddressEqualFold *string `json:"billingAddressEqualFold,omitempty"`
BillingAddressContainsFold *string `json:"billingAddressContainsFold,omitempty"`
// tax_identifier field predicates
TaxIdentifier *string `json:"taxIdentifier,omitempty"`
TaxIdentifierNeq *string `json:"taxIdentifierNEQ,omitempty"`
TaxIdentifierIn []string `json:"taxIdentifierIn,omitempty"`
TaxIdentifierNotIn []string `json:"taxIdentifierNotIn,omitempty"`
TaxIdentifierGt *string `json:"taxIdentifierGT,omitempty"`
TaxIdentifierGte *string `json:"taxIdentifierGTE,omitempty"`
TaxIdentifierLt *string `json:"taxIdentifierLT,omitempty"`
TaxIdentifierLte *string `json:"taxIdentifierLTE,omitempty"`
TaxIdentifierContains *string `json:"taxIdentifierContains,omitempty"`
TaxIdentifierHasPrefix *string `json:"taxIdentifierHasPrefix,omitempty"`
TaxIdentifierHasSuffix *string `json:"taxIdentifierHasSuffix,omitempty"`
TaxIdentifierIsNil *bool `json:"taxIdentifierIsNil,omitempty"`
TaxIdentifierNotNil *bool `json:"taxIdentifierNotNil,omitempty"`
TaxIdentifierEqualFold *string `json:"taxIdentifierEqualFold,omitempty"`
TaxIdentifierContainsFold *string `json:"taxIdentifierContainsFold,omitempty"`
// geo_location field predicates
GeoLocation *enums.Region `json:"geoLocation,omitempty"`
GeoLocationNeq *enums.Region `json:"geoLocationNEQ,omitempty"`
GeoLocationIn []enums.Region `json:"geoLocationIn,omitempty"`
GeoLocationNotIn []enums.Region `json:"geoLocationNotIn,omitempty"`
GeoLocationIsNil *bool `json:"geoLocationIsNil,omitempty"`
GeoLocationNotNil *bool `json:"geoLocationNotNil,omitempty"`
// organization_id field predicates
OrganizationID *string `json:"organizationID,omitempty"`
OrganizationIDNeq *string `json:"organizationIDNEQ,omitempty"`
OrganizationIDIn []string `json:"organizationIDIn,omitempty"`
OrganizationIDNotIn []string `json:"organizationIDNotIn,omitempty"`
OrganizationIDGt *string `json:"organizationIDGT,omitempty"`
OrganizationIDGte *string `json:"organizationIDGTE,omitempty"`
OrganizationIDLt *string `json:"organizationIDLT,omitempty"`
OrganizationIDLte *string `json:"organizationIDLTE,omitempty"`
OrganizationIDContains *string `json:"organizationIDContains,omitempty"`
OrganizationIDHasPrefix *string `json:"organizationIDHasPrefix,omitempty"`
OrganizationIDHasSuffix *string `json:"organizationIDHasSuffix,omitempty"`
OrganizationIDIsNil *bool `json:"organizationIDIsNil,omitempty"`
OrganizationIDNotNil *bool `json:"organizationIDNotNil,omitempty"`
OrganizationIDEqualFold *string `json:"organizationIDEqualFold,omitempty"`
OrganizationIDContainsFold *string `json:"organizationIDContainsFold,omitempty"`
}
OrganizationSettingHistoryWhereInput is used for filtering OrganizationSettingHistory objects. Input was generated by ent.
type OrganizationSettingUpdatePayload ¶
type OrganizationSettingUpdatePayload struct {
// Updated organizationSetting
OrganizationSetting *OrganizationSetting `json:"organizationSetting"`
}
Return response for updateOrganizationSetting mutation
type OrganizationSettingWhereInput ¶
type OrganizationSettingWhereInput struct {
Not *OrganizationSettingWhereInput `json:"not,omitempty"`
And []*OrganizationSettingWhereInput `json:"and,omitempty"`
Or []*OrganizationSettingWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// billing_contact field predicates
BillingContact *string `json:"billingContact,omitempty"`
BillingContactNeq *string `json:"billingContactNEQ,omitempty"`
BillingContactIn []string `json:"billingContactIn,omitempty"`
BillingContactNotIn []string `json:"billingContactNotIn,omitempty"`
BillingContactGt *string `json:"billingContactGT,omitempty"`
BillingContactGte *string `json:"billingContactGTE,omitempty"`
BillingContactLt *string `json:"billingContactLT,omitempty"`
BillingContactLte *string `json:"billingContactLTE,omitempty"`
BillingContactContains *string `json:"billingContactContains,omitempty"`
BillingContactHasPrefix *string `json:"billingContactHasPrefix,omitempty"`
BillingContactHasSuffix *string `json:"billingContactHasSuffix,omitempty"`
BillingContactIsNil *bool `json:"billingContactIsNil,omitempty"`
BillingContactNotNil *bool `json:"billingContactNotNil,omitempty"`
BillingContactEqualFold *string `json:"billingContactEqualFold,omitempty"`
BillingContactContainsFold *string `json:"billingContactContainsFold,omitempty"`
// billing_email field predicates
BillingEmail *string `json:"billingEmail,omitempty"`
BillingEmailNeq *string `json:"billingEmailNEQ,omitempty"`
BillingEmailIn []string `json:"billingEmailIn,omitempty"`
BillingEmailNotIn []string `json:"billingEmailNotIn,omitempty"`
BillingEmailGt *string `json:"billingEmailGT,omitempty"`
BillingEmailGte *string `json:"billingEmailGTE,omitempty"`
BillingEmailLt *string `json:"billingEmailLT,omitempty"`
BillingEmailLte *string `json:"billingEmailLTE,omitempty"`
BillingEmailContains *string `json:"billingEmailContains,omitempty"`
BillingEmailHasPrefix *string `json:"billingEmailHasPrefix,omitempty"`
BillingEmailHasSuffix *string `json:"billingEmailHasSuffix,omitempty"`
BillingEmailIsNil *bool `json:"billingEmailIsNil,omitempty"`
BillingEmailNotNil *bool `json:"billingEmailNotNil,omitempty"`
BillingEmailEqualFold *string `json:"billingEmailEqualFold,omitempty"`
BillingEmailContainsFold *string `json:"billingEmailContainsFold,omitempty"`
// billing_phone field predicates
BillingPhone *string `json:"billingPhone,omitempty"`
BillingPhoneNeq *string `json:"billingPhoneNEQ,omitempty"`
BillingPhoneIn []string `json:"billingPhoneIn,omitempty"`
BillingPhoneNotIn []string `json:"billingPhoneNotIn,omitempty"`
BillingPhoneGt *string `json:"billingPhoneGT,omitempty"`
BillingPhoneGte *string `json:"billingPhoneGTE,omitempty"`
BillingPhoneLt *string `json:"billingPhoneLT,omitempty"`
BillingPhoneLte *string `json:"billingPhoneLTE,omitempty"`
BillingPhoneContains *string `json:"billingPhoneContains,omitempty"`
BillingPhoneHasPrefix *string `json:"billingPhoneHasPrefix,omitempty"`
BillingPhoneHasSuffix *string `json:"billingPhoneHasSuffix,omitempty"`
BillingPhoneIsNil *bool `json:"billingPhoneIsNil,omitempty"`
BillingPhoneNotNil *bool `json:"billingPhoneNotNil,omitempty"`
BillingPhoneEqualFold *string `json:"billingPhoneEqualFold,omitempty"`
BillingPhoneContainsFold *string `json:"billingPhoneContainsFold,omitempty"`
// billing_address field predicates
BillingAddress *string `json:"billingAddress,omitempty"`
BillingAddressNeq *string `json:"billingAddressNEQ,omitempty"`
BillingAddressIn []string `json:"billingAddressIn,omitempty"`
BillingAddressNotIn []string `json:"billingAddressNotIn,omitempty"`
BillingAddressGt *string `json:"billingAddressGT,omitempty"`
BillingAddressGte *string `json:"billingAddressGTE,omitempty"`
BillingAddressLt *string `json:"billingAddressLT,omitempty"`
BillingAddressLte *string `json:"billingAddressLTE,omitempty"`
BillingAddressContains *string `json:"billingAddressContains,omitempty"`
BillingAddressHasPrefix *string `json:"billingAddressHasPrefix,omitempty"`
BillingAddressHasSuffix *string `json:"billingAddressHasSuffix,omitempty"`
BillingAddressIsNil *bool `json:"billingAddressIsNil,omitempty"`
BillingAddressNotNil *bool `json:"billingAddressNotNil,omitempty"`
BillingAddressEqualFold *string `json:"billingAddressEqualFold,omitempty"`
BillingAddressContainsFold *string `json:"billingAddressContainsFold,omitempty"`
// tax_identifier field predicates
TaxIdentifier *string `json:"taxIdentifier,omitempty"`
TaxIdentifierNeq *string `json:"taxIdentifierNEQ,omitempty"`
TaxIdentifierIn []string `json:"taxIdentifierIn,omitempty"`
TaxIdentifierNotIn []string `json:"taxIdentifierNotIn,omitempty"`
TaxIdentifierGt *string `json:"taxIdentifierGT,omitempty"`
TaxIdentifierGte *string `json:"taxIdentifierGTE,omitempty"`
TaxIdentifierLt *string `json:"taxIdentifierLT,omitempty"`
TaxIdentifierLte *string `json:"taxIdentifierLTE,omitempty"`
TaxIdentifierContains *string `json:"taxIdentifierContains,omitempty"`
TaxIdentifierHasPrefix *string `json:"taxIdentifierHasPrefix,omitempty"`
TaxIdentifierHasSuffix *string `json:"taxIdentifierHasSuffix,omitempty"`
TaxIdentifierIsNil *bool `json:"taxIdentifierIsNil,omitempty"`
TaxIdentifierNotNil *bool `json:"taxIdentifierNotNil,omitempty"`
TaxIdentifierEqualFold *string `json:"taxIdentifierEqualFold,omitempty"`
TaxIdentifierContainsFold *string `json:"taxIdentifierContainsFold,omitempty"`
// geo_location field predicates
GeoLocation *enums.Region `json:"geoLocation,omitempty"`
GeoLocationNeq *enums.Region `json:"geoLocationNEQ,omitempty"`
GeoLocationIn []enums.Region `json:"geoLocationIn,omitempty"`
GeoLocationNotIn []enums.Region `json:"geoLocationNotIn,omitempty"`
GeoLocationIsNil *bool `json:"geoLocationIsNil,omitempty"`
GeoLocationNotNil *bool `json:"geoLocationNotNil,omitempty"`
// organization_id field predicates
OrganizationID *string `json:"organizationID,omitempty"`
OrganizationIDNeq *string `json:"organizationIDNEQ,omitempty"`
OrganizationIDIn []string `json:"organizationIDIn,omitempty"`
OrganizationIDNotIn []string `json:"organizationIDNotIn,omitempty"`
OrganizationIDGt *string `json:"organizationIDGT,omitempty"`
OrganizationIDGte *string `json:"organizationIDGTE,omitempty"`
OrganizationIDLt *string `json:"organizationIDLT,omitempty"`
OrganizationIDLte *string `json:"organizationIDLTE,omitempty"`
OrganizationIDContains *string `json:"organizationIDContains,omitempty"`
OrganizationIDHasPrefix *string `json:"organizationIDHasPrefix,omitempty"`
OrganizationIDHasSuffix *string `json:"organizationIDHasSuffix,omitempty"`
OrganizationIDIsNil *bool `json:"organizationIDIsNil,omitempty"`
OrganizationIDNotNil *bool `json:"organizationIDNotNil,omitempty"`
OrganizationIDEqualFold *string `json:"organizationIDEqualFold,omitempty"`
OrganizationIDContainsFold *string `json:"organizationIDContainsFold,omitempty"`
// organization edge predicates
HasOrganization *bool `json:"hasOrganization,omitempty"`
HasOrganizationWith []*OrganizationWhereInput `json:"hasOrganizationWith,omitempty"`
}
OrganizationSettingWhereInput is used for filtering OrganizationSetting objects. Input was generated by ent.
type OrganizationUpdatePayload ¶
type OrganizationUpdatePayload struct {
// Updated organization
Organization *Organization `json:"organization"`
}
Return response for updateOrganization mutation
type OrganizationWhereInput ¶
type OrganizationWhereInput struct {
Not *OrganizationWhereInput `json:"not,omitempty"`
And []*OrganizationWhereInput `json:"and,omitempty"`
Or []*OrganizationWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// display_name field predicates
DisplayName *string `json:"displayName,omitempty"`
DisplayNameNeq *string `json:"displayNameNEQ,omitempty"`
DisplayNameIn []string `json:"displayNameIn,omitempty"`
DisplayNameNotIn []string `json:"displayNameNotIn,omitempty"`
DisplayNameGt *string `json:"displayNameGT,omitempty"`
DisplayNameGte *string `json:"displayNameGTE,omitempty"`
DisplayNameLt *string `json:"displayNameLT,omitempty"`
DisplayNameLte *string `json:"displayNameLTE,omitempty"`
DisplayNameContains *string `json:"displayNameContains,omitempty"`
DisplayNameHasPrefix *string `json:"displayNameHasPrefix,omitempty"`
DisplayNameHasSuffix *string `json:"displayNameHasSuffix,omitempty"`
DisplayNameEqualFold *string `json:"displayNameEqualFold,omitempty"`
DisplayNameContainsFold *string `json:"displayNameContainsFold,omitempty"`
// parent_organization_id field predicates
ParentOrganizationID *string `json:"parentOrganizationID,omitempty"`
ParentOrganizationIDNeq *string `json:"parentOrganizationIDNEQ,omitempty"`
ParentOrganizationIDIn []string `json:"parentOrganizationIDIn,omitempty"`
ParentOrganizationIDNotIn []string `json:"parentOrganizationIDNotIn,omitempty"`
ParentOrganizationIDGt *string `json:"parentOrganizationIDGT,omitempty"`
ParentOrganizationIDGte *string `json:"parentOrganizationIDGTE,omitempty"`
ParentOrganizationIDLt *string `json:"parentOrganizationIDLT,omitempty"`
ParentOrganizationIDLte *string `json:"parentOrganizationIDLTE,omitempty"`
ParentOrganizationIDContains *string `json:"parentOrganizationIDContains,omitempty"`
ParentOrganizationIDHasPrefix *string `json:"parentOrganizationIDHasPrefix,omitempty"`
ParentOrganizationIDHasSuffix *string `json:"parentOrganizationIDHasSuffix,omitempty"`
ParentOrganizationIDIsNil *bool `json:"parentOrganizationIDIsNil,omitempty"`
ParentOrganizationIDNotNil *bool `json:"parentOrganizationIDNotNil,omitempty"`
ParentOrganizationIDEqualFold *string `json:"parentOrganizationIDEqualFold,omitempty"`
ParentOrganizationIDContainsFold *string `json:"parentOrganizationIDContainsFold,omitempty"`
// personal_org field predicates
PersonalOrg *bool `json:"personalOrg,omitempty"`
PersonalOrgNeq *bool `json:"personalOrgNEQ,omitempty"`
PersonalOrgIsNil *bool `json:"personalOrgIsNil,omitempty"`
PersonalOrgNotNil *bool `json:"personalOrgNotNil,omitempty"`
// avatar_remote_url field predicates
AvatarRemoteURL *string `json:"avatarRemoteURL,omitempty"`
AvatarRemoteURLNeq *string `json:"avatarRemoteURLNEQ,omitempty"`
AvatarRemoteURLIn []string `json:"avatarRemoteURLIn,omitempty"`
AvatarRemoteURLNotIn []string `json:"avatarRemoteURLNotIn,omitempty"`
AvatarRemoteURLGt *string `json:"avatarRemoteURLGT,omitempty"`
AvatarRemoteURLGte *string `json:"avatarRemoteURLGTE,omitempty"`
AvatarRemoteURLLt *string `json:"avatarRemoteURLLT,omitempty"`
AvatarRemoteURLLte *string `json:"avatarRemoteURLLTE,omitempty"`
AvatarRemoteURLContains *string `json:"avatarRemoteURLContains,omitempty"`
AvatarRemoteURLHasPrefix *string `json:"avatarRemoteURLHasPrefix,omitempty"`
AvatarRemoteURLHasSuffix *string `json:"avatarRemoteURLHasSuffix,omitempty"`
AvatarRemoteURLIsNil *bool `json:"avatarRemoteURLIsNil,omitempty"`
AvatarRemoteURLNotNil *bool `json:"avatarRemoteURLNotNil,omitempty"`
AvatarRemoteURLEqualFold *string `json:"avatarRemoteURLEqualFold,omitempty"`
AvatarRemoteURLContainsFold *string `json:"avatarRemoteURLContainsFold,omitempty"`
// parent edge predicates
HasParent *bool `json:"hasParent,omitempty"`
HasParentWith []*OrganizationWhereInput `json:"hasParentWith,omitempty"`
// children edge predicates
HasChildren *bool `json:"hasChildren,omitempty"`
HasChildrenWith []*OrganizationWhereInput `json:"hasChildrenWith,omitempty"`
// groups edge predicates
HasGroups *bool `json:"hasGroups,omitempty"`
HasGroupsWith []*GroupWhereInput `json:"hasGroupsWith,omitempty"`
// templates edge predicates
HasTemplates *bool `json:"hasTemplates,omitempty"`
HasTemplatesWith []*TemplateWhereInput `json:"hasTemplatesWith,omitempty"`
// integrations edge predicates
HasIntegrations *bool `json:"hasIntegrations,omitempty"`
HasIntegrationsWith []*IntegrationWhereInput `json:"hasIntegrationsWith,omitempty"`
// setting edge predicates
HasSetting *bool `json:"hasSetting,omitempty"`
HasSettingWith []*OrganizationSettingWhereInput `json:"hasSettingWith,omitempty"`
// entitlements edge predicates
HasEntitlements *bool `json:"hasEntitlements,omitempty"`
HasEntitlementsWith []*EntitlementWhereInput `json:"hasEntitlementsWith,omitempty"`
// personal_access_tokens edge predicates
HasPersonalAccessTokens *bool `json:"hasPersonalAccessTokens,omitempty"`
HasPersonalAccessTokensWith []*PersonalAccessTokenWhereInput `json:"hasPersonalAccessTokensWith,omitempty"`
// oauthprovider edge predicates
HasOauthprovider *bool `json:"hasOauthprovider,omitempty"`
HasOauthproviderWith []*OauthProviderWhereInput `json:"hasOauthproviderWith,omitempty"`
// users edge predicates
HasUsers *bool `json:"hasUsers,omitempty"`
HasUsersWith []*UserWhereInput `json:"hasUsersWith,omitempty"`
// invites edge predicates
HasInvites *bool `json:"hasInvites,omitempty"`
HasInvitesWith []*InviteWhereInput `json:"hasInvitesWith,omitempty"`
// subscribers edge predicates
HasSubscribers *bool `json:"hasSubscribers,omitempty"`
HasSubscribersWith []*SubscriberWhereInput `json:"hasSubscribersWith,omitempty"`
// members edge predicates
HasMembers *bool `json:"hasMembers,omitempty"`
HasMembersWith []*OrgMembershipWhereInput `json:"hasMembersWith,omitempty"`
}
OrganizationWhereInput is used for filtering Organization objects. Input was generated by ent.
type OrganizationsWhere ¶
type OrganizationsWhere struct {
Organizations OrganizationsWhere_Organizations "json:\"organizations\" graphql:\"organizations\""
}
func (*OrganizationsWhere) GetOrganizations ¶
func (t *OrganizationsWhere) GetOrganizations() *OrganizationsWhere_Organizations
type OrganizationsWhere_Organizations ¶
type OrganizationsWhere_Organizations struct {
Edges []*OrganizationsWhere_Organizations_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*OrganizationsWhere_Organizations) GetEdges ¶
func (t *OrganizationsWhere_Organizations) GetEdges() []*OrganizationsWhere_Organizations_Edges
type OrganizationsWhere_Organizations_Edges ¶
type OrganizationsWhere_Organizations_Edges struct {
Node *OrganizationsWhere_Organizations_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*OrganizationsWhere_Organizations_Edges) GetNode ¶
func (t *OrganizationsWhere_Organizations_Edges) GetNode() *OrganizationsWhere_Organizations_Edges_Node
type OrganizationsWhere_Organizations_Edges_Node ¶
type OrganizationsWhere_Organizations_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
Parent *OrganizationsWhere_Organizations_Edges_Node_Parent "json:\"parent,omitempty\" graphql:\"parent\""
Children OrganizationsWhere_Organizations_Edges_Node_Children "json:\"children\" graphql:\"children\""
Members []*OrganizationsWhere_Organizations_Edges_Node_Members "json:\"members,omitempty\" graphql:\"members\""
Setting *OrganizationsWhere_Organizations_Edges_Node_Setting "json:\"setting,omitempty\" graphql:\"setting\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
}
func (*OrganizationsWhere_Organizations_Edges_Node) GetChildren ¶
func (t *OrganizationsWhere_Organizations_Edges_Node) GetChildren() *OrganizationsWhere_Organizations_Edges_Node_Children
func (*OrganizationsWhere_Organizations_Edges_Node) GetCreatedAt ¶
func (t *OrganizationsWhere_Organizations_Edges_Node) GetCreatedAt() *time.Time
func (*OrganizationsWhere_Organizations_Edges_Node) GetDescription ¶
func (t *OrganizationsWhere_Organizations_Edges_Node) GetDescription() *string
func (*OrganizationsWhere_Organizations_Edges_Node) GetDisplayName ¶
func (t *OrganizationsWhere_Organizations_Edges_Node) GetDisplayName() string
func (*OrganizationsWhere_Organizations_Edges_Node) GetID ¶
func (t *OrganizationsWhere_Organizations_Edges_Node) GetID() string
func (*OrganizationsWhere_Organizations_Edges_Node) GetMembers ¶
func (t *OrganizationsWhere_Organizations_Edges_Node) GetMembers() []*OrganizationsWhere_Organizations_Edges_Node_Members
func (*OrganizationsWhere_Organizations_Edges_Node) GetName ¶
func (t *OrganizationsWhere_Organizations_Edges_Node) GetName() string
func (*OrganizationsWhere_Organizations_Edges_Node) GetParent ¶
func (t *OrganizationsWhere_Organizations_Edges_Node) GetParent() *OrganizationsWhere_Organizations_Edges_Node_Parent
func (*OrganizationsWhere_Organizations_Edges_Node) GetPersonalOrg ¶
func (t *OrganizationsWhere_Organizations_Edges_Node) GetPersonalOrg() *bool
func (*OrganizationsWhere_Organizations_Edges_Node) GetSetting ¶
func (t *OrganizationsWhere_Organizations_Edges_Node) GetSetting() *OrganizationsWhere_Organizations_Edges_Node_Setting
func (*OrganizationsWhere_Organizations_Edges_Node) GetUpdatedAt ¶
func (t *OrganizationsWhere_Organizations_Edges_Node) GetUpdatedAt() *time.Time
type OrganizationsWhere_Organizations_Edges_Node_Children ¶
type OrganizationsWhere_Organizations_Edges_Node_Children struct {
Edges []*OrganizationsWhere_Organizations_Edges_Node_Children_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
type OrganizationsWhere_Organizations_Edges_Node_Children_Edges ¶
type OrganizationsWhere_Organizations_Edges_Node_Children_Edges struct {
Node *OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
type OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node ¶
type OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
}
func (*OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetDescription ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetDescription() *string
func (*OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetDisplayName ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetDisplayName() string
func (*OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetID ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetID() string
func (*OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetName ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Children_Edges_Node) GetName() string
type OrganizationsWhere_Organizations_Edges_Node_Members ¶
type OrganizationsWhere_Organizations_Edges_Node_Members struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
User OrganizationsWhere_Organizations_Edges_Node_Members_User "json:\"user\" graphql:\"user\""
}
func (*OrganizationsWhere_Organizations_Edges_Node_Members) GetID ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Members) GetID() string
func (*OrganizationsWhere_Organizations_Edges_Node_Members) GetRole ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Members) GetRole() *enums.Role
type OrganizationsWhere_Organizations_Edges_Node_Members_User ¶
type OrganizationsWhere_Organizations_Edges_Node_Members_User struct {
ID string "json:\"id\" graphql:\"id\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
}
func (*OrganizationsWhere_Organizations_Edges_Node_Members_User) GetFirstName ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Members_User) GetFirstName() string
func (*OrganizationsWhere_Organizations_Edges_Node_Members_User) GetID ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Members_User) GetID() string
func (*OrganizationsWhere_Organizations_Edges_Node_Members_User) GetLastName ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Members_User) GetLastName() string
type OrganizationsWhere_Organizations_Edges_Node_Parent ¶
type OrganizationsWhere_Organizations_Edges_Node_Parent struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
}
func (*OrganizationsWhere_Organizations_Edges_Node_Parent) GetID ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Parent) GetID() string
func (*OrganizationsWhere_Organizations_Edges_Node_Parent) GetName ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Parent) GetName() string
type OrganizationsWhere_Organizations_Edges_Node_Setting ¶
type OrganizationsWhere_Organizations_Edges_Node_Setting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Domains []string "json:\"domains,omitempty\" graphql:\"domains\""
BillingContact *string "json:\"billingContact,omitempty\" graphql:\"billingContact\""
BillingEmail *string "json:\"billingEmail,omitempty\" graphql:\"billingEmail\""
BillingPhone *string "json:\"billingPhone,omitempty\" graphql:\"billingPhone\""
BillingAddress *string "json:\"billingAddress,omitempty\" graphql:\"billingAddress\""
TaxIdentifier *string "json:\"taxIdentifier,omitempty\" graphql:\"taxIdentifier\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
GeoLocation *enums.Region "json:\"geoLocation,omitempty\" graphql:\"geoLocation\""
}
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingAddress ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingAddress() *string
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingContact ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingContact() *string
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingEmail ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingEmail() *string
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingPhone ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetBillingPhone() *string
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetCreatedAt ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetCreatedAt() *time.Time
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetCreatedBy ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetCreatedBy() *string
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetDomains ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetDomains() []string
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetGeoLocation ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetGeoLocation() *enums.Region
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetID ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetID() string
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetTags ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetTags() []string
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetTaxIdentifier ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetTaxIdentifier() *string
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetUpdatedAt ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetUpdatedAt() *time.Time
func (*OrganizationsWhere_Organizations_Edges_Node_Setting) GetUpdatedBy ¶
func (t *OrganizationsWhere_Organizations_Edges_Node_Setting) GetUpdatedBy() *string
type PageInfo ¶
type PageInfo struct {
// When paginating forwards, are there more items?
HasNextPage bool `json:"hasNextPage"`
// When paginating backwards, are there more items?
HasPreviousPage bool `json:"hasPreviousPage"`
// When paginating backwards, the cursor to continue.
StartCursor *string `json:"startCursor,omitempty"`
// When paginating forwards, the cursor to continue.
EndCursor *string `json:"endCursor,omitempty"`
}
Information about pagination in a connection. https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo
type PersonalAccessToken ¶
type PersonalAccessToken struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
// the name associated with the token
Name string `json:"name"`
Token string `json:"token"`
// when the token expires
ExpiresAt time.Time `json:"expiresAt"`
// a description of the token's purpose
Description *string `json:"description,omitempty"`
Scopes []string `json:"scopes,omitempty"`
LastUsedAt *time.Time `json:"lastUsedAt,omitempty"`
Owner *User `json:"owner"`
// the organization(s) the token is associated with
Organizations []*Organization `json:"organizations,omitempty"`
}
func (PersonalAccessToken) IsNode ¶
func (PersonalAccessToken) IsNode()
type PersonalAccessTokenConnection ¶
type PersonalAccessTokenConnection struct {
// A list of edges.
Edges []*PersonalAccessTokenEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type PersonalAccessTokenCreatePayload ¶
type PersonalAccessTokenCreatePayload struct {
// Created personalAccessToken
PersonalAccessToken *PersonalAccessToken `json:"personalAccessToken"`
}
Return response for createPersonalAccessToken mutation
type PersonalAccessTokenDeletePayload ¶
type PersonalAccessTokenDeletePayload struct {
// Deleted personalAccessToken ID
DeletedID string `json:"deletedID"`
}
Return response for deletePersonalAccessToken mutation
type PersonalAccessTokenEdge ¶
type PersonalAccessTokenEdge struct {
// The item at the end of the edge.
Node *PersonalAccessToken `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type PersonalAccessTokenUpdatePayload ¶
type PersonalAccessTokenUpdatePayload struct {
// Updated personalAccessToken
PersonalAccessToken *PersonalAccessToken `json:"personalAccessToken"`
}
Return response for updatePersonalAccessToken mutation
type PersonalAccessTokenWhereInput ¶
type PersonalAccessTokenWhereInput struct {
Not *PersonalAccessTokenWhereInput `json:"not,omitempty"`
And []*PersonalAccessTokenWhereInput `json:"and,omitempty"`
Or []*PersonalAccessTokenWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// name field predicates
Name *string `json:"name,omitempty"`
NameNeq *string `json:"nameNEQ,omitempty"`
NameIn []string `json:"nameIn,omitempty"`
NameNotIn []string `json:"nameNotIn,omitempty"`
NameGt *string `json:"nameGT,omitempty"`
NameGte *string `json:"nameGTE,omitempty"`
NameLt *string `json:"nameLT,omitempty"`
NameLte *string `json:"nameLTE,omitempty"`
NameContains *string `json:"nameContains,omitempty"`
NameHasPrefix *string `json:"nameHasPrefix,omitempty"`
NameHasSuffix *string `json:"nameHasSuffix,omitempty"`
NameEqualFold *string `json:"nameEqualFold,omitempty"`
NameContainsFold *string `json:"nameContainsFold,omitempty"`
// expires_at field predicates
ExpiresAt *time.Time `json:"expiresAt,omitempty"`
ExpiresAtNeq *time.Time `json:"expiresAtNEQ,omitempty"`
ExpiresAtIn []*time.Time `json:"expiresAtIn,omitempty"`
ExpiresAtNotIn []*time.Time `json:"expiresAtNotIn,omitempty"`
ExpiresAtGt *time.Time `json:"expiresAtGT,omitempty"`
ExpiresAtGte *time.Time `json:"expiresAtGTE,omitempty"`
ExpiresAtLt *time.Time `json:"expiresAtLT,omitempty"`
ExpiresAtLte *time.Time `json:"expiresAtLTE,omitempty"`
// last_used_at field predicates
LastUsedAt *time.Time `json:"lastUsedAt,omitempty"`
LastUsedAtNeq *time.Time `json:"lastUsedAtNEQ,omitempty"`
LastUsedAtIn []*time.Time `json:"lastUsedAtIn,omitempty"`
LastUsedAtNotIn []*time.Time `json:"lastUsedAtNotIn,omitempty"`
LastUsedAtGt *time.Time `json:"lastUsedAtGT,omitempty"`
LastUsedAtGte *time.Time `json:"lastUsedAtGTE,omitempty"`
LastUsedAtLt *time.Time `json:"lastUsedAtLT,omitempty"`
LastUsedAtLte *time.Time `json:"lastUsedAtLTE,omitempty"`
LastUsedAtIsNil *bool `json:"lastUsedAtIsNil,omitempty"`
LastUsedAtNotNil *bool `json:"lastUsedAtNotNil,omitempty"`
// owner edge predicates
HasOwner *bool `json:"hasOwner,omitempty"`
HasOwnerWith []*UserWhereInput `json:"hasOwnerWith,omitempty"`
// organizations edge predicates
HasOrganizations *bool `json:"hasOrganizations,omitempty"`
HasOrganizationsWith []*OrganizationWhereInput `json:"hasOrganizationsWith,omitempty"`
}
PersonalAccessTokenWhereInput is used for filtering PersonalAccessToken objects. Input was generated by ent.
type RemoveUserFromGroup ¶
type RemoveUserFromGroup struct {
DeleteGroupMembership RemoveUserFromGroup_DeleteGroupMembership "json:\"deleteGroupMembership\" graphql:\"deleteGroupMembership\""
}
func (*RemoveUserFromGroup) GetDeleteGroupMembership ¶
func (t *RemoveUserFromGroup) GetDeleteGroupMembership() *RemoveUserFromGroup_DeleteGroupMembership
type RemoveUserFromGroup_DeleteGroupMembership ¶
type RemoveUserFromGroup_DeleteGroupMembership struct {
DeletedID string "json:\"deletedID\" graphql:\"deletedID\""
}
func (*RemoveUserFromGroup_DeleteGroupMembership) GetDeletedID ¶
func (t *RemoveUserFromGroup_DeleteGroupMembership) GetDeletedID() string
type RemoveUserFromOrg ¶
type RemoveUserFromOrg struct {
DeleteOrgMembership RemoveUserFromOrg_DeleteOrgMembership "json:\"deleteOrgMembership\" graphql:\"deleteOrgMembership\""
}
func (*RemoveUserFromOrg) GetDeleteOrgMembership ¶
func (t *RemoveUserFromOrg) GetDeleteOrgMembership() *RemoveUserFromOrg_DeleteOrgMembership
type RemoveUserFromOrg_DeleteOrgMembership ¶
type RemoveUserFromOrg_DeleteOrgMembership struct {
DeletedID string "json:\"deletedID\" graphql:\"deletedID\""
}
func (*RemoveUserFromOrg_DeleteOrgMembership) GetDeletedID ¶
func (t *RemoveUserFromOrg_DeleteOrgMembership) GetDeletedID() string
type RequestError ¶
type RequestError struct {
// StatusCode is the http response code that was returned
StatusCode int
// Body of the response
Body string
}
RequestError is a generic error when a request with the client fails
func (*RequestError) Error ¶
func (e *RequestError) Error() string
Error returns the RequestError in string format
type Subscriber ¶
type Subscriber struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
OwnerID *string `json:"ownerID,omitempty"`
// email address of the subscriber
Email string `json:"email"`
// phone number of the subscriber
PhoneNumber *string `json:"phoneNumber,omitempty"`
// indicates if the email address has been verified
VerifiedEmail bool `json:"verifiedEmail"`
// indicates if the phone number has been verified
VerifiedPhone bool `json:"verifiedPhone"`
// indicates if the subscriber is active or not, active users will have at least one verified contact method
Active bool `json:"active"`
Owner *Organization `json:"owner,omitempty"`
}
func (Subscriber) IsNode ¶
func (Subscriber) IsNode()
type SubscriberConnection ¶
type SubscriberConnection struct {
// A list of edges.
Edges []*SubscriberEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type SubscriberCreatePayload ¶
type SubscriberCreatePayload struct {
// Created subscriber
Subscriber *Subscriber `json:"subscriber"`
}
Return response for createSubscriber mutation
type SubscriberDeletePayload ¶
type SubscriberDeletePayload struct {
// Deleted subscriber ID
DeletedID string `json:"deletedID"`
}
Return response for deleteSubscriber mutation
type SubscriberEdge ¶
type SubscriberEdge struct {
// The item at the end of the edge.
Node *Subscriber `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type SubscriberUpdatePayload ¶
type SubscriberUpdatePayload struct {
// Updated subscriber
Subscriber *Subscriber `json:"subscriber"`
}
Return response for updateSubscriber mutation
type SubscriberWhereInput ¶
type SubscriberWhereInput struct {
Not *SubscriberWhereInput `json:"not,omitempty"`
And []*SubscriberWhereInput `json:"and,omitempty"`
Or []*SubscriberWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// owner_id field predicates
OwnerID *string `json:"ownerID,omitempty"`
OwnerIDNeq *string `json:"ownerIDNEQ,omitempty"`
OwnerIDIn []string `json:"ownerIDIn,omitempty"`
OwnerIDNotIn []string `json:"ownerIDNotIn,omitempty"`
OwnerIDGt *string `json:"ownerIDGT,omitempty"`
OwnerIDGte *string `json:"ownerIDGTE,omitempty"`
OwnerIDLt *string `json:"ownerIDLT,omitempty"`
OwnerIDLte *string `json:"ownerIDLTE,omitempty"`
OwnerIDContains *string `json:"ownerIDContains,omitempty"`
OwnerIDHasPrefix *string `json:"ownerIDHasPrefix,omitempty"`
OwnerIDHasSuffix *string `json:"ownerIDHasSuffix,omitempty"`
OwnerIDIsNil *bool `json:"ownerIDIsNil,omitempty"`
OwnerIDNotNil *bool `json:"ownerIDNotNil,omitempty"`
OwnerIDEqualFold *string `json:"ownerIDEqualFold,omitempty"`
OwnerIDContainsFold *string `json:"ownerIDContainsFold,omitempty"`
// email field predicates
Email *string `json:"email,omitempty"`
EmailNeq *string `json:"emailNEQ,omitempty"`
EmailIn []string `json:"emailIn,omitempty"`
EmailNotIn []string `json:"emailNotIn,omitempty"`
EmailGt *string `json:"emailGT,omitempty"`
EmailGte *string `json:"emailGTE,omitempty"`
EmailLt *string `json:"emailLT,omitempty"`
EmailLte *string `json:"emailLTE,omitempty"`
EmailContains *string `json:"emailContains,omitempty"`
EmailHasPrefix *string `json:"emailHasPrefix,omitempty"`
EmailHasSuffix *string `json:"emailHasSuffix,omitempty"`
EmailEqualFold *string `json:"emailEqualFold,omitempty"`
EmailContainsFold *string `json:"emailContainsFold,omitempty"`
// phone_number field predicates
PhoneNumber *string `json:"phoneNumber,omitempty"`
PhoneNumberNeq *string `json:"phoneNumberNEQ,omitempty"`
PhoneNumberIn []string `json:"phoneNumberIn,omitempty"`
PhoneNumberNotIn []string `json:"phoneNumberNotIn,omitempty"`
PhoneNumberGt *string `json:"phoneNumberGT,omitempty"`
PhoneNumberGte *string `json:"phoneNumberGTE,omitempty"`
PhoneNumberLt *string `json:"phoneNumberLT,omitempty"`
PhoneNumberLte *string `json:"phoneNumberLTE,omitempty"`
PhoneNumberContains *string `json:"phoneNumberContains,omitempty"`
PhoneNumberHasPrefix *string `json:"phoneNumberHasPrefix,omitempty"`
PhoneNumberHasSuffix *string `json:"phoneNumberHasSuffix,omitempty"`
PhoneNumberIsNil *bool `json:"phoneNumberIsNil,omitempty"`
PhoneNumberNotNil *bool `json:"phoneNumberNotNil,omitempty"`
PhoneNumberEqualFold *string `json:"phoneNumberEqualFold,omitempty"`
PhoneNumberContainsFold *string `json:"phoneNumberContainsFold,omitempty"`
// verified_email field predicates
VerifiedEmail *bool `json:"verifiedEmail,omitempty"`
VerifiedEmailNeq *bool `json:"verifiedEmailNEQ,omitempty"`
// verified_phone field predicates
VerifiedPhone *bool `json:"verifiedPhone,omitempty"`
VerifiedPhoneNeq *bool `json:"verifiedPhoneNEQ,omitempty"`
// active field predicates
Active *bool `json:"active,omitempty"`
ActiveNeq *bool `json:"activeNEQ,omitempty"`
// owner edge predicates
HasOwner *bool `json:"hasOwner,omitempty"`
HasOwnerWith []*OrganizationWhereInput `json:"hasOwnerWith,omitempty"`
}
SubscriberWhereInput is used for filtering Subscriber objects. Input was generated by ent.
type Subscribers ¶
type Subscribers struct {
Subscribers Subscribers_Subscribers "json:\"subscribers\" graphql:\"subscribers\""
}
func (*Subscribers) GetSubscribers ¶
func (t *Subscribers) GetSubscribers() *Subscribers_Subscribers
type Subscribers_Subscribers ¶
type Subscribers_Subscribers struct {
Edges []*Subscribers_Subscribers_Edges "json:\"edges,omitempty\" graphql:\"edges\""
}
func (*Subscribers_Subscribers) GetEdges ¶
func (t *Subscribers_Subscribers) GetEdges() []*Subscribers_Subscribers_Edges
type Subscribers_Subscribers_Edges ¶
type Subscribers_Subscribers_Edges struct {
Node *Subscribers_Subscribers_Edges_Node "json:\"node,omitempty\" graphql:\"node\""
}
func (*Subscribers_Subscribers_Edges) GetNode ¶
func (t *Subscribers_Subscribers_Edges) GetNode() *Subscribers_Subscribers_Edges_Node
type Subscribers_Subscribers_Edges_Node ¶
type Subscribers_Subscribers_Edges_Node struct {
ID string "json:\"id\" graphql:\"id\""
Email string "json:\"email\" graphql:\"email\""
VerifiedEmail bool "json:\"verifiedEmail\" graphql:\"verifiedEmail\""
Active bool "json:\"active\" graphql:\"active\""
OwnerID *string "json:\"ownerID,omitempty\" graphql:\"ownerID\""
}
func (*Subscribers_Subscribers_Edges_Node) GetActive ¶
func (t *Subscribers_Subscribers_Edges_Node) GetActive() bool
func (*Subscribers_Subscribers_Edges_Node) GetEmail ¶
func (t *Subscribers_Subscribers_Edges_Node) GetEmail() string
func (*Subscribers_Subscribers_Edges_Node) GetID ¶
func (t *Subscribers_Subscribers_Edges_Node) GetID() string
func (*Subscribers_Subscribers_Edges_Node) GetOwnerID ¶
func (t *Subscribers_Subscribers_Edges_Node) GetOwnerID() *string
func (*Subscribers_Subscribers_Edges_Node) GetVerifiedEmail ¶
func (t *Subscribers_Subscribers_Edges_Node) GetVerifiedEmail() bool
type Subscription ¶
type Subscription struct {
}
type TFASetting ¶ added in v0.4.4
type TFASetting struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
// TFA secret for the user
TfaSecret *string `json:"tfaSecret,omitempty"`
// specifies if the TFA device has been verified
Verified bool `json:"verified"`
// recovery codes for 2fa
RecoveryCodes []string `json:"recoveryCodes,omitempty"`
// specifies a user may complete authentication by verifying a TOTP code delivered through an authenticator app
TotpAllowed *bool `json:"totpAllowed,omitempty"`
Owner *User `json:"owner,omitempty"`
}
func (TFASetting) IsNode ¶ added in v0.4.4
func (TFASetting) IsNode()
type TFASettingConnection ¶ added in v0.4.4
type TFASettingConnection struct {
// A list of edges.
Edges []*TFASettingEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type TFASettingCreatePayload ¶ added in v0.4.4
type TFASettingCreatePayload struct {
// Created tfaSetting
TfaSetting *TFASetting `json:"tfaSetting"`
}
Return response for createTFASetting mutation
type TFASettingEdge ¶ added in v0.4.4
type TFASettingEdge struct {
// The item at the end of the edge.
Node *TFASetting `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type TFASettingUpdatePayload ¶ added in v0.4.4
type TFASettingUpdatePayload struct {
// Updated tfaSetting
TfaSetting *TFASetting `json:"tfaSetting"`
}
Return response for updateTFASetting mutation
type TFASettingWhereInput ¶ added in v0.4.4
type TFASettingWhereInput struct {
Not *TFASettingWhereInput `json:"not,omitempty"`
And []*TFASettingWhereInput `json:"and,omitempty"`
Or []*TFASettingWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// tfa_secret field predicates
TfaSecret *string `json:"tfaSecret,omitempty"`
TfaSecretNeq *string `json:"tfaSecretNEQ,omitempty"`
TfaSecretIn []string `json:"tfaSecretIn,omitempty"`
TfaSecretNotIn []string `json:"tfaSecretNotIn,omitempty"`
TfaSecretGt *string `json:"tfaSecretGT,omitempty"`
TfaSecretGte *string `json:"tfaSecretGTE,omitempty"`
TfaSecretLt *string `json:"tfaSecretLT,omitempty"`
TfaSecretLte *string `json:"tfaSecretLTE,omitempty"`
TfaSecretContains *string `json:"tfaSecretContains,omitempty"`
TfaSecretHasPrefix *string `json:"tfaSecretHasPrefix,omitempty"`
TfaSecretHasSuffix *string `json:"tfaSecretHasSuffix,omitempty"`
TfaSecretIsNil *bool `json:"tfaSecretIsNil,omitempty"`
TfaSecretNotNil *bool `json:"tfaSecretNotNil,omitempty"`
TfaSecretEqualFold *string `json:"tfaSecretEqualFold,omitempty"`
TfaSecretContainsFold *string `json:"tfaSecretContainsFold,omitempty"`
// verified field predicates
Verified *bool `json:"verified,omitempty"`
VerifiedNeq *bool `json:"verifiedNEQ,omitempty"`
// totp_allowed field predicates
TotpAllowed *bool `json:"totpAllowed,omitempty"`
TotpAllowedNeq *bool `json:"totpAllowedNEQ,omitempty"`
TotpAllowedIsNil *bool `json:"totpAllowedIsNil,omitempty"`
TotpAllowedNotNil *bool `json:"totpAllowedNotNil,omitempty"`
// owner edge predicates
HasOwner *bool `json:"hasOwner,omitempty"`
HasOwnerWith []*UserWhereInput `json:"hasOwnerWith,omitempty"`
}
TFASettingWhereInput is used for filtering TFASetting objects. Input was generated by ent.
type Template ¶
type Template struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
// the name of the template
Name string `json:"name"`
// the type of the template, either a provided template or an implementation (document)
Type enums.DocumentType `json:"type"`
// the description of the template
Description *string `json:"description,omitempty"`
// the jsonschema object of the template
Jsonconfig json.RawMessage `json:"jsonconfig"`
// the uischema for the template to render in the UI
Uischema json.RawMessage `json:"uischema,omitempty"`
Owner *Organization `json:"owner"`
Documents []*DocumentData `json:"documents,omitempty"`
}
type TemplateConnection ¶
type TemplateConnection struct {
// A list of edges.
Edges []*TemplateEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type TemplateCreatePayload ¶
type TemplateCreatePayload struct {
// Created template
Template *Template `json:"template"`
}
Return response for createTemplate mutation
type TemplateDeletePayload ¶
type TemplateDeletePayload struct {
// Deleted template ID
DeletedID string `json:"deletedID"`
}
Return response for deleteTemplate mutation
type TemplateEdge ¶
type TemplateEdge struct {
// The item at the end of the edge.
Node *Template `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type TemplateOrder ¶
type TemplateOrder struct {
// The ordering direction.
Direction OrderDirection `json:"direction"`
// The field by which to order Templates.
Field TemplateOrderField `json:"field"`
}
Ordering options for Template connections
type TemplateOrderField ¶
type TemplateOrderField string
Properties by which Template connections can be ordered.
const (
TemplateOrderFieldName TemplateOrderField = "name"
)
func (TemplateOrderField) IsValid ¶
func (e TemplateOrderField) IsValid() bool
func (TemplateOrderField) MarshalGQL ¶
func (e TemplateOrderField) MarshalGQL(w io.Writer)
func (TemplateOrderField) String ¶
func (e TemplateOrderField) String() string
func (*TemplateOrderField) UnmarshalGQL ¶
func (e *TemplateOrderField) UnmarshalGQL(v interface{}) error
type TemplateUpdatePayload ¶
type TemplateUpdatePayload struct {
// Updated template
Template *Template `json:"template"`
}
Return response for updateTemplate mutation
type TemplateWhereInput ¶
type TemplateWhereInput struct {
Not *TemplateWhereInput `json:"not,omitempty"`
And []*TemplateWhereInput `json:"and,omitempty"`
Or []*TemplateWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// name field predicates
Name *string `json:"name,omitempty"`
NameNeq *string `json:"nameNEQ,omitempty"`
NameIn []string `json:"nameIn,omitempty"`
NameNotIn []string `json:"nameNotIn,omitempty"`
NameGt *string `json:"nameGT,omitempty"`
NameGte *string `json:"nameGTE,omitempty"`
NameLt *string `json:"nameLT,omitempty"`
NameLte *string `json:"nameLTE,omitempty"`
NameContains *string `json:"nameContains,omitempty"`
NameHasPrefix *string `json:"nameHasPrefix,omitempty"`
NameHasSuffix *string `json:"nameHasSuffix,omitempty"`
NameEqualFold *string `json:"nameEqualFold,omitempty"`
NameContainsFold *string `json:"nameContainsFold,omitempty"`
// type field predicates
Type *enums.DocumentType `json:"type,omitempty"`
TypeNeq *enums.DocumentType `json:"typeNEQ,omitempty"`
TypeIn []enums.DocumentType `json:"typeIn,omitempty"`
TypeNotIn []enums.DocumentType `json:"typeNotIn,omitempty"`
// description field predicates
Description *string `json:"description,omitempty"`
DescriptionNeq *string `json:"descriptionNEQ,omitempty"`
DescriptionIn []string `json:"descriptionIn,omitempty"`
DescriptionNotIn []string `json:"descriptionNotIn,omitempty"`
DescriptionGt *string `json:"descriptionGT,omitempty"`
DescriptionGte *string `json:"descriptionGTE,omitempty"`
DescriptionLt *string `json:"descriptionLT,omitempty"`
DescriptionLte *string `json:"descriptionLTE,omitempty"`
DescriptionContains *string `json:"descriptionContains,omitempty"`
DescriptionHasPrefix *string `json:"descriptionHasPrefix,omitempty"`
DescriptionHasSuffix *string `json:"descriptionHasSuffix,omitempty"`
DescriptionIsNil *bool `json:"descriptionIsNil,omitempty"`
DescriptionNotNil *bool `json:"descriptionNotNil,omitempty"`
DescriptionEqualFold *string `json:"descriptionEqualFold,omitempty"`
DescriptionContainsFold *string `json:"descriptionContainsFold,omitempty"`
// owner edge predicates
HasOwner *bool `json:"hasOwner,omitempty"`
HasOwnerWith []*OrganizationWhereInput `json:"hasOwnerWith,omitempty"`
// documents edge predicates
HasDocuments *bool `json:"hasDocuments,omitempty"`
HasDocumentsWith []*DocumentDataWhereInput `json:"hasDocumentsWith,omitempty"`
}
TemplateWhereInput is used for filtering Template objects. Input was generated by ent.
type UpdateDocumentData ¶ added in v0.4.4
type UpdateDocumentData struct {
UpdateDocumentData UpdateDocumentData_UpdateDocumentData "json:\"updateDocumentData\" graphql:\"updateDocumentData\""
}
func (*UpdateDocumentData) GetUpdateDocumentData ¶ added in v0.4.4
func (t *UpdateDocumentData) GetUpdateDocumentData() *UpdateDocumentData_UpdateDocumentData
type UpdateDocumentDataInput ¶ added in v0.4.4
type UpdateDocumentDataInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// the json data of the document
Data json.RawMessage `json:"data,omitempty"`
TemplateID *string `json:"templateID,omitempty"`
}
UpdateDocumentDataInput is used for update DocumentData object. Input was generated by ent.
type UpdateDocumentData_UpdateDocumentData ¶ added in v0.4.4
type UpdateDocumentData_UpdateDocumentData struct {
DocumentData UpdateDocumentData_UpdateDocumentData_DocumentData "json:\"documentData\" graphql:\"documentData\""
}
func (*UpdateDocumentData_UpdateDocumentData) GetDocumentData ¶ added in v0.4.4
func (t *UpdateDocumentData_UpdateDocumentData) GetDocumentData() *UpdateDocumentData_UpdateDocumentData_DocumentData
type UpdateDocumentData_UpdateDocumentData_DocumentData ¶ added in v0.4.4
type UpdateDocumentData_UpdateDocumentData_DocumentData struct {
ID string "json:\"id\" graphql:\"id\""
TemplateID string "json:\"templateID\" graphql:\"templateID\""
Data json.RawMessage "json:\"data\" graphql:\"data\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*UpdateDocumentData_UpdateDocumentData_DocumentData) GetCreatedAt ¶ added in v0.4.4
func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetCreatedAt() *time.Time
func (*UpdateDocumentData_UpdateDocumentData_DocumentData) GetCreatedBy ¶ added in v0.4.4
func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetCreatedBy() *string
func (*UpdateDocumentData_UpdateDocumentData_DocumentData) GetData ¶ added in v0.4.4
func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetData() *json.RawMessage
func (*UpdateDocumentData_UpdateDocumentData_DocumentData) GetID ¶ added in v0.4.4
func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetID() string
func (*UpdateDocumentData_UpdateDocumentData_DocumentData) GetTemplateID ¶ added in v0.4.4
func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetTemplateID() string
func (*UpdateDocumentData_UpdateDocumentData_DocumentData) GetUpdatedAt ¶ added in v0.4.4
func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetUpdatedAt() *time.Time
func (*UpdateDocumentData_UpdateDocumentData_DocumentData) GetUpdatedBy ¶ added in v0.4.4
func (t *UpdateDocumentData_UpdateDocumentData_DocumentData) GetUpdatedBy() *string
type UpdateEntitlementInput ¶
type UpdateEntitlementInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
Tier *enums.Tier `json:"tier,omitempty"`
// used to store references to external systems, e.g. Stripe
ExternalCustomerID *string `json:"externalCustomerID,omitempty"`
ClearExternalCustomerID *bool `json:"clearExternalCustomerID,omitempty"`
// used to store references to external systems, e.g. Stripe
ExternalSubscriptionID *string `json:"externalSubscriptionID,omitempty"`
ClearExternalSubscriptionID *bool `json:"clearExternalSubscriptionID,omitempty"`
// whether or not the customers entitlement expires - expires_at will show the time
Expires *bool `json:"expires,omitempty"`
// the time at which a customer's entitlement will expire, e.g. they've cancelled but paid through the end of the month
ExpiresAt *time.Time `json:"expiresAt,omitempty"`
ClearExpiresAt *bool `json:"clearExpiresAt,omitempty"`
// whether or not the customer has cancelled their entitlement - usually used in conjunction with expires and expires at
Cancelled *bool `json:"cancelled,omitempty"`
OwnerID *string `json:"ownerID,omitempty"`
}
UpdateEntitlementInput is used for update Entitlement object. Input was generated by ent.
type UpdateGroup ¶
type UpdateGroup struct {
UpdateGroup UpdateGroup_UpdateGroup "json:\"updateGroup\" graphql:\"updateGroup\""
}
func (*UpdateGroup) GetUpdateGroup ¶
func (t *UpdateGroup) GetUpdateGroup() *UpdateGroup_UpdateGroup
type UpdateGroupInput ¶
type UpdateGroupInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// the name of the group - must be unique within the organization
Name *string `json:"name,omitempty"`
// the groups description
Description *string `json:"description,omitempty"`
ClearDescription *bool `json:"clearDescription,omitempty"`
// the URL to an auto generated gravatar image for the group
GravatarLogoURL *string `json:"gravatarLogoURL,omitempty"`
ClearGravatarLogoURL *bool `json:"clearGravatarLogoURL,omitempty"`
// the URL to an image uploaded by the customer for the groups avatar image
LogoURL *string `json:"logoURL,omitempty"`
ClearLogoURL *bool `json:"clearLogoURL,omitempty"`
// The group's displayed 'friendly' name
DisplayName *string `json:"displayName,omitempty"`
OwnerID *string `json:"ownerID,omitempty"`
SettingID *string `json:"settingID,omitempty"`
AddUserIDs []string `json:"addUserIDs,omitempty"`
RemoveUserIDs []string `json:"removeUserIDs,omitempty"`
ClearUsers *bool `json:"clearUsers,omitempty"`
AddGroupMembers []*CreateGroupMembershipInput `json:"addGroupMembers,omitempty"`
UpdateGroupSettings *UpdateGroupSettingInput `json:"updateGroupSettings,omitempty"`
}
UpdateGroupInput is used for update Group object. Input was generated by ent.
type UpdateGroupMembershipInput ¶
type UpdateGroupMembershipInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
Role *enums.Role `json:"role,omitempty"`
}
UpdateGroupMembershipInput is used for update GroupMembership object. Input was generated by ent.
type UpdateGroupSetting ¶
type UpdateGroupSetting struct {
UpdateGroupSetting UpdateGroupSetting_UpdateGroupSetting "json:\"updateGroupSetting\" graphql:\"updateGroupSetting\""
}
func (*UpdateGroupSetting) GetUpdateGroupSetting ¶
func (t *UpdateGroupSetting) GetUpdateGroupSetting() *UpdateGroupSetting_UpdateGroupSetting
type UpdateGroupSettingInput ¶
type UpdateGroupSettingInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// whether the group is visible to it's members / owners only or if it's searchable by anyone within the organization
Visibility *enums.Visibility `json:"visibility,omitempty"`
// the policy governing ability to freely join a group, whether it requires an invitation, application, or either
JoinPolicy *enums.JoinPolicy `json:"joinPolicy,omitempty"`
// tags associated with the object
Tags []string `json:"tags,omitempty"`
AppendTags []string `json:"appendTags,omitempty"`
ClearTags *bool `json:"clearTags,omitempty"`
// whether to sync group members to slack groups
SyncToSlack *bool `json:"syncToSlack,omitempty"`
ClearSyncToSlack *bool `json:"clearSyncToSlack,omitempty"`
// whether to sync group members to github groups
SyncToGithub *bool `json:"syncToGithub,omitempty"`
ClearSyncToGithub *bool `json:"clearSyncToGithub,omitempty"`
GroupID *string `json:"groupID,omitempty"`
ClearGroup *bool `json:"clearGroup,omitempty"`
}
UpdateGroupSettingInput is used for update GroupSetting object. Input was generated by ent.
type UpdateGroupSetting_UpdateGroupSetting ¶
type UpdateGroupSetting_UpdateGroupSetting struct {
GroupSetting UpdateGroupSetting_UpdateGroupSetting_GroupSetting "json:\"groupSetting\" graphql:\"groupSetting\""
}
func (*UpdateGroupSetting_UpdateGroupSetting) GetGroupSetting ¶
func (t *UpdateGroupSetting_UpdateGroupSetting) GetGroupSetting() *UpdateGroupSetting_UpdateGroupSetting_GroupSetting
type UpdateGroupSetting_UpdateGroupSetting_GroupSetting ¶
type UpdateGroupSetting_UpdateGroupSetting_GroupSetting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Visibility enums.Visibility "json:\"visibility\" graphql:\"visibility\""
JoinPolicy enums.JoinPolicy "json:\"joinPolicy\" graphql:\"joinPolicy\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
SyncToSlack *bool "json:\"syncToSlack,omitempty\" graphql:\"syncToSlack\""
SyncToGithub *bool "json:\"syncToGithub,omitempty\" graphql:\"syncToGithub\""
Group *UpdateGroupSetting_UpdateGroupSetting_GroupSetting_Group "json:\"group,omitempty\" graphql:\"group\""
}
func (*UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetCreatedAt ¶
func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetCreatedAt() *time.Time
func (*UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetCreatedBy ¶
func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetCreatedBy() *string
func (*UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetID ¶
func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetID() string
func (*UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetJoinPolicy ¶
func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetJoinPolicy() *enums.JoinPolicy
func (*UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetSyncToGithub ¶
func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetSyncToGithub() *bool
func (*UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetSyncToSlack ¶
func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetSyncToSlack() *bool
func (*UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetTags ¶
func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetTags() []string
func (*UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetUpdatedAt ¶
func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetUpdatedAt() *time.Time
func (*UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetUpdatedBy ¶
func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetUpdatedBy() *string
func (*UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetVisibility ¶
func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting) GetVisibility() *enums.Visibility
type UpdateGroupSetting_UpdateGroupSetting_GroupSetting_Group ¶
type UpdateGroupSetting_UpdateGroupSetting_GroupSetting_Group struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*UpdateGroupSetting_UpdateGroupSetting_GroupSetting_Group) GetID ¶
func (t *UpdateGroupSetting_UpdateGroupSetting_GroupSetting_Group) GetID() string
type UpdateGroup_UpdateGroup ¶
type UpdateGroup_UpdateGroup struct {
Group UpdateGroup_UpdateGroup_Group "json:\"group\" graphql:\"group\""
}
func (*UpdateGroup_UpdateGroup) GetGroup ¶
func (t *UpdateGroup_UpdateGroup) GetGroup() *UpdateGroup_UpdateGroup_Group
type UpdateGroup_UpdateGroup_Group ¶
type UpdateGroup_UpdateGroup_Group struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
Setting UpdateGroup_UpdateGroup_Group_Setting "json:\"setting\" graphql:\"setting\""
Members []*UpdateGroup_UpdateGroup_Group_Members "json:\"members,omitempty\" graphql:\"members\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*UpdateGroup_UpdateGroup_Group) GetDescription ¶
func (t *UpdateGroup_UpdateGroup_Group) GetDescription() *string
func (*UpdateGroup_UpdateGroup_Group) GetDisplayName ¶
func (t *UpdateGroup_UpdateGroup_Group) GetDisplayName() string
func (*UpdateGroup_UpdateGroup_Group) GetID ¶
func (t *UpdateGroup_UpdateGroup_Group) GetID() string
func (*UpdateGroup_UpdateGroup_Group) GetMembers ¶
func (t *UpdateGroup_UpdateGroup_Group) GetMembers() []*UpdateGroup_UpdateGroup_Group_Members
func (*UpdateGroup_UpdateGroup_Group) GetName ¶
func (t *UpdateGroup_UpdateGroup_Group) GetName() string
func (*UpdateGroup_UpdateGroup_Group) GetSetting ¶
func (t *UpdateGroup_UpdateGroup_Group) GetSetting() *UpdateGroup_UpdateGroup_Group_Setting
func (*UpdateGroup_UpdateGroup_Group) GetUpdatedAt ¶
func (t *UpdateGroup_UpdateGroup_Group) GetUpdatedAt() *time.Time
func (*UpdateGroup_UpdateGroup_Group) GetUpdatedBy ¶
func (t *UpdateGroup_UpdateGroup_Group) GetUpdatedBy() *string
type UpdateGroup_UpdateGroup_Group_Members ¶
type UpdateGroup_UpdateGroup_Group_Members struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
User UpdateGroup_UpdateGroup_Group_Members_User "json:\"user\" graphql:\"user\""
}
func (*UpdateGroup_UpdateGroup_Group_Members) GetID ¶
func (t *UpdateGroup_UpdateGroup_Group_Members) GetID() string
func (*UpdateGroup_UpdateGroup_Group_Members) GetRole ¶
func (t *UpdateGroup_UpdateGroup_Group_Members) GetRole() *enums.Role
func (*UpdateGroup_UpdateGroup_Group_Members) GetUser ¶
func (t *UpdateGroup_UpdateGroup_Group_Members) GetUser() *UpdateGroup_UpdateGroup_Group_Members_User
type UpdateGroup_UpdateGroup_Group_Members_User ¶
type UpdateGroup_UpdateGroup_Group_Members_User struct {
ID string "json:\"id\" graphql:\"id\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
}
func (*UpdateGroup_UpdateGroup_Group_Members_User) GetFirstName ¶
func (t *UpdateGroup_UpdateGroup_Group_Members_User) GetFirstName() string
func (*UpdateGroup_UpdateGroup_Group_Members_User) GetID ¶
func (t *UpdateGroup_UpdateGroup_Group_Members_User) GetID() string
func (*UpdateGroup_UpdateGroup_Group_Members_User) GetLastName ¶
func (t *UpdateGroup_UpdateGroup_Group_Members_User) GetLastName() string
type UpdateGroup_UpdateGroup_Group_Setting ¶
type UpdateGroup_UpdateGroup_Group_Setting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Visibility enums.Visibility "json:\"visibility\" graphql:\"visibility\""
JoinPolicy enums.JoinPolicy "json:\"joinPolicy\" graphql:\"joinPolicy\""
SyncToSlack *bool "json:\"syncToSlack,omitempty\" graphql:\"syncToSlack\""
SyncToGithub *bool "json:\"syncToGithub,omitempty\" graphql:\"syncToGithub\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
}
func (*UpdateGroup_UpdateGroup_Group_Setting) GetCreatedAt ¶
func (t *UpdateGroup_UpdateGroup_Group_Setting) GetCreatedAt() *time.Time
func (*UpdateGroup_UpdateGroup_Group_Setting) GetCreatedBy ¶
func (t *UpdateGroup_UpdateGroup_Group_Setting) GetCreatedBy() *string
func (*UpdateGroup_UpdateGroup_Group_Setting) GetID ¶
func (t *UpdateGroup_UpdateGroup_Group_Setting) GetID() string
func (*UpdateGroup_UpdateGroup_Group_Setting) GetJoinPolicy ¶
func (t *UpdateGroup_UpdateGroup_Group_Setting) GetJoinPolicy() *enums.JoinPolicy
func (*UpdateGroup_UpdateGroup_Group_Setting) GetSyncToGithub ¶
func (t *UpdateGroup_UpdateGroup_Group_Setting) GetSyncToGithub() *bool
func (*UpdateGroup_UpdateGroup_Group_Setting) GetSyncToSlack ¶
func (t *UpdateGroup_UpdateGroup_Group_Setting) GetSyncToSlack() *bool
func (*UpdateGroup_UpdateGroup_Group_Setting) GetTags ¶
func (t *UpdateGroup_UpdateGroup_Group_Setting) GetTags() []string
func (*UpdateGroup_UpdateGroup_Group_Setting) GetUpdatedAt ¶
func (t *UpdateGroup_UpdateGroup_Group_Setting) GetUpdatedAt() *time.Time
func (*UpdateGroup_UpdateGroup_Group_Setting) GetUpdatedBy ¶
func (t *UpdateGroup_UpdateGroup_Group_Setting) GetUpdatedBy() *string
func (*UpdateGroup_UpdateGroup_Group_Setting) GetVisibility ¶
func (t *UpdateGroup_UpdateGroup_Group_Setting) GetVisibility() *enums.Visibility
type UpdateIntegrationInput ¶
type UpdateIntegrationInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// the name of the integration - must be unique within the organization
Name *string `json:"name,omitempty"`
// a description of the integration
Description *string `json:"description,omitempty"`
ClearDescription *bool `json:"clearDescription,omitempty"`
Kind *string `json:"kind,omitempty"`
ClearKind *bool `json:"clearKind,omitempty"`
OwnerID *string `json:"ownerID,omitempty"`
}
UpdateIntegrationInput is used for update Integration object. Input was generated by ent.
type UpdateInviteInput ¶
type UpdateInviteInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// the expiration date of the invitation token which defaults to 14 days in the future from creation
Expires *time.Time `json:"expires,omitempty"`
// the email used as input to generate the invitation token and is the destination person the invitation is sent to who is required to accept to join the organization
Recipient *string `json:"recipient,omitempty"`
// the status of the invitation
Status *enums.InviteStatus `json:"status,omitempty"`
Role *enums.Role `json:"role,omitempty"`
// the number of attempts made to perform email send of the invitation, maximum of 5
SendAttempts *int64 `json:"sendAttempts,omitempty"`
OwnerID *string `json:"ownerID,omitempty"`
}
UpdateInviteInput is used for update Invite object. Input was generated by ent.
type UpdateOauthProviderInput ¶
type UpdateOauthProviderInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// the oauth provider's name
Name *string `json:"name,omitempty"`
// the client id for the oauth provider
ClientID *string `json:"clientID,omitempty"`
// the client secret
ClientSecret *string `json:"clientSecret,omitempty"`
// the redirect url
RedirectURL *string `json:"redirectURL,omitempty"`
// the scopes
Scopes *string `json:"scopes,omitempty"`
// the auth url of the provider
AuthURL *string `json:"authURL,omitempty"`
// the token url of the provider
TokenURL *string `json:"tokenURL,omitempty"`
// the auth style, 0: auto detect 1: third party log in 2: log in with username and password
AuthStyle *string `json:"authStyle,omitempty"`
// the URL to request user information by token
InfoURL *string `json:"infoURL,omitempty"`
OwnerID *string `json:"ownerID,omitempty"`
ClearOwner *bool `json:"clearOwner,omitempty"`
}
UpdateOauthProviderInput is used for update OauthProvider object. Input was generated by ent.
type UpdateOhAuthTooTokenInput ¶
type UpdateOhAuthTooTokenInput struct {
ClientID *string `json:"clientID,omitempty"`
Scopes []string `json:"scopes,omitempty"`
AppendScopes []string `json:"appendScopes,omitempty"`
ClearScopes *bool `json:"clearScopes,omitempty"`
Nonce *string `json:"nonce,omitempty"`
ClaimsUserID *string `json:"claimsUserID,omitempty"`
ClaimsUsername *string `json:"claimsUsername,omitempty"`
ClaimsEmail *string `json:"claimsEmail,omitempty"`
ClaimsEmailVerified *bool `json:"claimsEmailVerified,omitempty"`
ClaimsGroups []string `json:"claimsGroups,omitempty"`
AppendClaimsGroups []string `json:"appendClaimsGroups,omitempty"`
ClearClaimsGroups *bool `json:"clearClaimsGroups,omitempty"`
ClaimsPreferredUsername *string `json:"claimsPreferredUsername,omitempty"`
ConnectorID *string `json:"connectorID,omitempty"`
ConnectorData []string `json:"connectorData,omitempty"`
AppendConnectorData []string `json:"appendConnectorData,omitempty"`
ClearConnectorData *bool `json:"clearConnectorData,omitempty"`
LastUsed *time.Time `json:"lastUsed,omitempty"`
}
UpdateOhAuthTooTokenInput is used for update OhAuthTooToken object. Input was generated by ent.
type UpdateOrgMembershipInput ¶
type UpdateOrgMembershipInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
Role *enums.Role `json:"role,omitempty"`
}
UpdateOrgMembershipInput is used for update OrgMembership object. Input was generated by ent.
type UpdateOrganization ¶
type UpdateOrganization struct {
UpdateOrganization UpdateOrganization_UpdateOrganization "json:\"updateOrganization\" graphql:\"updateOrganization\""
}
func (*UpdateOrganization) GetUpdateOrganization ¶
func (t *UpdateOrganization) GetUpdateOrganization() *UpdateOrganization_UpdateOrganization
type UpdateOrganizationInput ¶
type UpdateOrganizationInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// the name of the organization
Name *string `json:"name,omitempty"`
// The organization's displayed 'friendly' name
DisplayName *string `json:"displayName,omitempty"`
// An optional description of the organization
Description *string `json:"description,omitempty"`
ClearDescription *bool `json:"clearDescription,omitempty"`
// URL of the user's remote avatar
AvatarRemoteURL *string `json:"avatarRemoteURL,omitempty"`
ClearAvatarRemoteURL *bool `json:"clearAvatarRemoteURL,omitempty"`
AddGroupIDs []string `json:"addGroupIDs,omitempty"`
RemoveGroupIDs []string `json:"removeGroupIDs,omitempty"`
ClearGroups *bool `json:"clearGroups,omitempty"`
AddTemplateIDs []string `json:"addTemplateIDs,omitempty"`
RemoveTemplateIDs []string `json:"removeTemplateIDs,omitempty"`
ClearTemplates *bool `json:"clearTemplates,omitempty"`
AddIntegrationIDs []string `json:"addIntegrationIDs,omitempty"`
RemoveIntegrationIDs []string `json:"removeIntegrationIDs,omitempty"`
ClearIntegrations *bool `json:"clearIntegrations,omitempty"`
SettingID *string `json:"settingID,omitempty"`
ClearSetting *bool `json:"clearSetting,omitempty"`
AddEntitlementIDs []string `json:"addEntitlementIDs,omitempty"`
RemoveEntitlementIDs []string `json:"removeEntitlementIDs,omitempty"`
ClearEntitlements *bool `json:"clearEntitlements,omitempty"`
AddPersonalAccessTokenIDs []string `json:"addPersonalAccessTokenIDs,omitempty"`
RemovePersonalAccessTokenIDs []string `json:"removePersonalAccessTokenIDs,omitempty"`
ClearPersonalAccessTokens *bool `json:"clearPersonalAccessTokens,omitempty"`
AddOauthproviderIDs []string `json:"addOauthproviderIDs,omitempty"`
RemoveOauthproviderIDs []string `json:"removeOauthproviderIDs,omitempty"`
ClearOauthprovider *bool `json:"clearOauthprovider,omitempty"`
AddUserIDs []string `json:"addUserIDs,omitempty"`
RemoveUserIDs []string `json:"removeUserIDs,omitempty"`
ClearUsers *bool `json:"clearUsers,omitempty"`
AddInviteIDs []string `json:"addInviteIDs,omitempty"`
RemoveInviteIDs []string `json:"removeInviteIDs,omitempty"`
ClearInvites *bool `json:"clearInvites,omitempty"`
AddSubscriberIDs []string `json:"addSubscriberIDs,omitempty"`
RemoveSubscriberIDs []string `json:"removeSubscriberIDs,omitempty"`
ClearSubscribers *bool `json:"clearSubscribers,omitempty"`
AddOrgMembers []*CreateOrgMembershipInput `json:"addOrgMembers,omitempty"`
UpdateOrgSettings *UpdateOrganizationSettingInput `json:"updateOrgSettings,omitempty"`
}
UpdateOrganizationInput is used for update Organization object. Input was generated by ent.
type UpdateOrganizationSetting ¶
type UpdateOrganizationSetting struct {
UpdateOrganizationSetting UpdateOrganizationSetting_UpdateOrganizationSetting "json:\"updateOrganizationSetting\" graphql:\"updateOrganizationSetting\""
}
func (*UpdateOrganizationSetting) GetUpdateOrganizationSetting ¶
func (t *UpdateOrganizationSetting) GetUpdateOrganizationSetting() *UpdateOrganizationSetting_UpdateOrganizationSetting
type UpdateOrganizationSettingInput ¶
type UpdateOrganizationSettingInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// domains associated with the organization
Domains []string `json:"domains,omitempty"`
AppendDomains []string `json:"appendDomains,omitempty"`
ClearDomains *bool `json:"clearDomains,omitempty"`
// Name of the person to contact for billing
BillingContact *string `json:"billingContact,omitempty"`
ClearBillingContact *bool `json:"clearBillingContact,omitempty"`
// Email address of the person to contact for billing
BillingEmail *string `json:"billingEmail,omitempty"`
ClearBillingEmail *bool `json:"clearBillingEmail,omitempty"`
// Phone number to contact for billing
BillingPhone *string `json:"billingPhone,omitempty"`
ClearBillingPhone *bool `json:"clearBillingPhone,omitempty"`
// Address to send billing information to
BillingAddress *string `json:"billingAddress,omitempty"`
ClearBillingAddress *bool `json:"clearBillingAddress,omitempty"`
// Usually government-issued tax ID or business ID such as ABN in Australia
TaxIdentifier *string `json:"taxIdentifier,omitempty"`
ClearTaxIdentifier *bool `json:"clearTaxIdentifier,omitempty"`
// tags associated with the object
Tags []string `json:"tags,omitempty"`
AppendTags []string `json:"appendTags,omitempty"`
ClearTags *bool `json:"clearTags,omitempty"`
// geographical location of the organization
GeoLocation *enums.Region `json:"geoLocation,omitempty"`
ClearGeoLocation *bool `json:"clearGeoLocation,omitempty"`
OrganizationID *string `json:"organizationID,omitempty"`
ClearOrganization *bool `json:"clearOrganization,omitempty"`
}
UpdateOrganizationSettingInput is used for update OrganizationSetting object. Input was generated by ent.
type UpdateOrganizationSetting_UpdateOrganizationSetting ¶
type UpdateOrganizationSetting_UpdateOrganizationSetting struct {
OrganizationSetting UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting "json:\"organizationSetting\" graphql:\"organizationSetting\""
}
func (*UpdateOrganizationSetting_UpdateOrganizationSetting) GetOrganizationSetting ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting) GetOrganizationSetting() *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting
type UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting ¶
type UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
Domains []string "json:\"domains,omitempty\" graphql:\"domains\""
BillingContact *string "json:\"billingContact,omitempty\" graphql:\"billingContact\""
BillingEmail *string "json:\"billingEmail,omitempty\" graphql:\"billingEmail\""
BillingPhone *string "json:\"billingPhone,omitempty\" graphql:\"billingPhone\""
BillingAddress *string "json:\"billingAddress,omitempty\" graphql:\"billingAddress\""
TaxIdentifier *string "json:\"taxIdentifier,omitempty\" graphql:\"taxIdentifier\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
GeoLocation *enums.Region "json:\"geoLocation,omitempty\" graphql:\"geoLocation\""
Organization *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting_Organization "json:\"organization,omitempty\" graphql:\"organization\""
}
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingAddress ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingAddress() *string
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingContact ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingContact() *string
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingEmail ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingEmail() *string
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingPhone ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetBillingPhone() *string
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetCreatedAt ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetCreatedAt() *time.Time
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetCreatedBy ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetCreatedBy() *string
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetDeletedAt ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetDeletedAt() *time.Time
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetDeletedBy ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetDeletedBy() *string
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetDomains ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetDomains() []string
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetGeoLocation ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetGeoLocation() *enums.Region
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetOrganization ¶
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetTags ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetTags() []string
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetTaxIdentifier ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetTaxIdentifier() *string
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetUpdatedAt ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetUpdatedAt() *time.Time
func (*UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetUpdatedBy ¶
func (t *UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting) GetUpdatedBy() *string
type UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting_Organization ¶
type UpdateOrganizationSetting_UpdateOrganizationSetting_OrganizationSetting_Organization struct {
ID string "json:\"id\" graphql:\"id\""
}
type UpdateOrganization_UpdateOrganization ¶
type UpdateOrganization_UpdateOrganization struct {
Organization UpdateOrganization_UpdateOrganization_Organization "json:\"organization\" graphql:\"organization\""
}
func (*UpdateOrganization_UpdateOrganization) GetOrganization ¶
func (t *UpdateOrganization_UpdateOrganization) GetOrganization() *UpdateOrganization_UpdateOrganization_Organization
type UpdateOrganization_UpdateOrganization_Organization ¶
type UpdateOrganization_UpdateOrganization_Organization struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
Members []*UpdateOrganization_UpdateOrganization_Organization_Members "json:\"members,omitempty\" graphql:\"members\""
Setting *UpdateOrganization_UpdateOrganization_Organization_Setting "json:\"setting,omitempty\" graphql:\"setting\""
}
func (*UpdateOrganization_UpdateOrganization_Organization) GetDescription ¶
func (t *UpdateOrganization_UpdateOrganization_Organization) GetDescription() *string
func (*UpdateOrganization_UpdateOrganization_Organization) GetDisplayName ¶
func (t *UpdateOrganization_UpdateOrganization_Organization) GetDisplayName() string
func (*UpdateOrganization_UpdateOrganization_Organization) GetID ¶
func (t *UpdateOrganization_UpdateOrganization_Organization) GetID() string
func (*UpdateOrganization_UpdateOrganization_Organization) GetMembers ¶
func (t *UpdateOrganization_UpdateOrganization_Organization) GetMembers() []*UpdateOrganization_UpdateOrganization_Organization_Members
func (*UpdateOrganization_UpdateOrganization_Organization) GetName ¶
func (t *UpdateOrganization_UpdateOrganization_Organization) GetName() string
func (*UpdateOrganization_UpdateOrganization_Organization) GetSetting ¶
type UpdateOrganization_UpdateOrganization_Organization_Members ¶
type UpdateOrganization_UpdateOrganization_Organization_Members struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
UserID string "json:\"userID\" graphql:\"userID\""
}
func (*UpdateOrganization_UpdateOrganization_Organization_Members) GetID ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Members) GetID() string
func (*UpdateOrganization_UpdateOrganization_Organization_Members) GetRole ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Members) GetRole() *enums.Role
func (*UpdateOrganization_UpdateOrganization_Organization_Members) GetUserID ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Members) GetUserID() string
type UpdateOrganization_UpdateOrganization_Organization_Setting ¶
type UpdateOrganization_UpdateOrganization_Organization_Setting struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Domains []string "json:\"domains,omitempty\" graphql:\"domains\""
BillingContact *string "json:\"billingContact,omitempty\" graphql:\"billingContact\""
BillingEmail *string "json:\"billingEmail,omitempty\" graphql:\"billingEmail\""
BillingPhone *string "json:\"billingPhone,omitempty\" graphql:\"billingPhone\""
BillingAddress *string "json:\"billingAddress,omitempty\" graphql:\"billingAddress\""
TaxIdentifier *string "json:\"taxIdentifier,omitempty\" graphql:\"taxIdentifier\""
Tags []string "json:\"tags,omitempty\" graphql:\"tags\""
GeoLocation *enums.Region "json:\"geoLocation,omitempty\" graphql:\"geoLocation\""
}
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingAddress ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingAddress() *string
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingContact ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingContact() *string
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingEmail ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingEmail() *string
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingPhone ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetBillingPhone() *string
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetCreatedAt ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetCreatedAt() *time.Time
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetCreatedBy ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetCreatedBy() *string
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetDomains ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetDomains() []string
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetGeoLocation ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetGeoLocation() *enums.Region
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetID ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetID() string
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetTags ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetTags() []string
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetTaxIdentifier ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetTaxIdentifier() *string
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetUpdatedAt ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetUpdatedAt() *time.Time
func (*UpdateOrganization_UpdateOrganization_Organization_Setting) GetUpdatedBy ¶
func (t *UpdateOrganization_UpdateOrganization_Organization_Setting) GetUpdatedBy() *string
type UpdatePersonalAccessToken ¶
type UpdatePersonalAccessToken struct {
UpdatePersonalAccessToken UpdatePersonalAccessToken_UpdatePersonalAccessToken "json:\"updatePersonalAccessToken\" graphql:\"updatePersonalAccessToken\""
}
func (*UpdatePersonalAccessToken) GetUpdatePersonalAccessToken ¶
func (t *UpdatePersonalAccessToken) GetUpdatePersonalAccessToken() *UpdatePersonalAccessToken_UpdatePersonalAccessToken
type UpdatePersonalAccessTokenInput ¶
type UpdatePersonalAccessTokenInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// the name associated with the token
Name *string `json:"name,omitempty"`
// a description of the token's purpose
Description *string `json:"description,omitempty"`
ClearDescription *bool `json:"clearDescription,omitempty"`
Scopes []string `json:"scopes,omitempty"`
AppendScopes []string `json:"appendScopes,omitempty"`
ClearScopes *bool `json:"clearScopes,omitempty"`
LastUsedAt *time.Time `json:"lastUsedAt,omitempty"`
ClearLastUsedAt *bool `json:"clearLastUsedAt,omitempty"`
AddOrganizationIDs []string `json:"addOrganizationIDs,omitempty"`
RemoveOrganizationIDs []string `json:"removeOrganizationIDs,omitempty"`
ClearOrganizations *bool `json:"clearOrganizations,omitempty"`
}
UpdatePersonalAccessTokenInput is used for update PersonalAccessToken object. Input was generated by ent.
type UpdatePersonalAccessToken_UpdatePersonalAccessToken ¶
type UpdatePersonalAccessToken_UpdatePersonalAccessToken struct {
PersonalAccessToken UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken "json:\"personalAccessToken\" graphql:\"personalAccessToken\""
}
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken) GetPersonalAccessToken ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken) GetPersonalAccessToken() *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken
type UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken ¶
type UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken struct {
ID string "json:\"id\" graphql:\"id\""
Token string "json:\"token\" graphql:\"token\""
Scopes []string "json:\"scopes,omitempty\" graphql:\"scopes\""
Organizations []*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Organizations "json:\"organizations,omitempty\" graphql:\"organizations\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
Name string "json:\"name\" graphql:\"name\""
ExpiresAt time.Time "json:\"expiresAt\" graphql:\"expiresAt\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
LastUsedAt *time.Time "json:\"lastUsedAt,omitempty\" graphql:\"lastUsedAt\""
Owner UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Owner "json:\"owner\" graphql:\"owner\""
}
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetCreatedAt ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetCreatedAt() *time.Time
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetCreatedBy ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetCreatedBy() *string
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetDescription ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetDescription() *string
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetExpiresAt ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetExpiresAt() *time.Time
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetLastUsedAt ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetLastUsedAt() *time.Time
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetName ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetName() string
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetOrganizations ¶
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetScopes ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetScopes() []string
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetToken ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetToken() string
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetUpdatedAt ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetUpdatedAt() *time.Time
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetUpdatedBy ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken) GetUpdatedBy() *string
type UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Organizations ¶
type UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Organizations struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
}
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Organizations) GetID ¶
type UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Owner ¶
type UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Owner struct {
ID string "json:\"id\" graphql:\"id\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
}
func (*UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Owner) GetDisplayName ¶
func (t *UpdatePersonalAccessToken_UpdatePersonalAccessToken_PersonalAccessToken_Owner) GetDisplayName() string
type UpdateSubscriberInput ¶
type UpdateSubscriberInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// email address of the subscriber
Email *string `json:"email,omitempty"`
// phone number of the subscriber
PhoneNumber *string `json:"phoneNumber,omitempty"`
ClearPhoneNumber *bool `json:"clearPhoneNumber,omitempty"`
// indicates if the email address has been verified
VerifiedEmail *bool `json:"verifiedEmail,omitempty"`
// indicates if the phone number has been verified
VerifiedPhone *bool `json:"verifiedPhone,omitempty"`
// indicates if the subscriber is active or not, active users will have at least one verified contact method
Active *bool `json:"active,omitempty"`
OwnerID *string `json:"ownerID,omitempty"`
ClearOwner *bool `json:"clearOwner,omitempty"`
}
UpdateSubscriberInput is used for update Subscriber object. Input was generated by ent.
type UpdateTFASetting ¶ added in v0.4.4
type UpdateTFASetting struct {
UpdateTFASetting UpdateTFASetting_UpdateTFASetting "json:\"updateTFASetting\" graphql:\"updateTFASetting\""
}
func (*UpdateTFASetting) GetUpdateTFASetting ¶ added in v0.4.4
func (t *UpdateTFASetting) GetUpdateTFASetting() *UpdateTFASetting_UpdateTFASetting
type UpdateTFASettingInput ¶ added in v0.4.4
type UpdateTFASettingInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// specifies if the TFA device has been verified
Verified *bool `json:"verified,omitempty"`
// specifies a user may complete authentication by verifying a TOTP code delivered through an authenticator app
TotpAllowed *bool `json:"totpAllowed,omitempty"`
ClearTotpAllowed *bool `json:"clearTotpAllowed,omitempty"`
// Whether to regenerate backup codes
RegenBackupCodes *bool `json:"regenBackupCodes,omitempty"`
}
UpdateTFASettingInput is used for update TFASetting object. Input was generated by ent.
type UpdateTFASetting_UpdateTFASetting ¶ added in v0.4.4
type UpdateTFASetting_UpdateTFASetting struct {
TfaSetting UpdateTFASetting_UpdateTFASetting_TfaSetting "json:\"tfaSetting\" graphql:\"tfaSetting\""
}
func (*UpdateTFASetting_UpdateTFASetting) GetTfaSetting ¶ added in v0.4.4
func (t *UpdateTFASetting_UpdateTFASetting) GetTfaSetting() *UpdateTFASetting_UpdateTFASetting_TfaSetting
type UpdateTFASetting_UpdateTFASetting_TfaSetting ¶ added in v0.4.4
type UpdateTFASetting_UpdateTFASetting_TfaSetting struct {
TotpAllowed *bool "json:\"totpAllowed,omitempty\" graphql:\"totpAllowed\""
RecoveryCodes []string "json:\"recoveryCodes,omitempty\" graphql:\"recoveryCodes\""
Verified bool "json:\"verified\" graphql:\"verified\""
}
func (*UpdateTFASetting_UpdateTFASetting_TfaSetting) GetRecoveryCodes ¶ added in v0.4.4
func (t *UpdateTFASetting_UpdateTFASetting_TfaSetting) GetRecoveryCodes() []string
func (*UpdateTFASetting_UpdateTFASetting_TfaSetting) GetTotpAllowed ¶ added in v0.4.4
func (t *UpdateTFASetting_UpdateTFASetting_TfaSetting) GetTotpAllowed() *bool
func (*UpdateTFASetting_UpdateTFASetting_TfaSetting) GetVerified ¶ added in v0.4.4
func (t *UpdateTFASetting_UpdateTFASetting_TfaSetting) GetVerified() bool
type UpdateTemplate ¶
type UpdateTemplate struct {
UpdateTemplate UpdateTemplate_UpdateTemplate "json:\"updateTemplate\" graphql:\"updateTemplate\""
}
func (*UpdateTemplate) GetUpdateTemplate ¶
func (t *UpdateTemplate) GetUpdateTemplate() *UpdateTemplate_UpdateTemplate
type UpdateTemplateInput ¶
type UpdateTemplateInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// the name of the template
Name *string `json:"name,omitempty"`
// the type of the template, either a provided template or an implementation (document)
Type *enums.DocumentType `json:"type,omitempty"`
// the description of the template
Description *string `json:"description,omitempty"`
ClearDescription *bool `json:"clearDescription,omitempty"`
// the jsonschema object of the template
Jsonconfig json.RawMessage `json:"jsonconfig,omitempty"`
// the uischema for the template to render in the UI
Uischema json.RawMessage `json:"uischema,omitempty"`
ClearUischema *bool `json:"clearUischema,omitempty"`
OwnerID *string `json:"ownerID,omitempty"`
AddDocumentIDs []string `json:"addDocumentIDs,omitempty"`
RemoveDocumentIDs []string `json:"removeDocumentIDs,omitempty"`
ClearDocuments *bool `json:"clearDocuments,omitempty"`
}
UpdateTemplateInput is used for update Template object. Input was generated by ent.
type UpdateTemplate_UpdateTemplate ¶
type UpdateTemplate_UpdateTemplate struct {
Template UpdateTemplate_UpdateTemplate_Template "json:\"template\" graphql:\"template\""
}
func (*UpdateTemplate_UpdateTemplate) GetTemplate ¶
func (t *UpdateTemplate_UpdateTemplate) GetTemplate() *UpdateTemplate_UpdateTemplate_Template
type UpdateTemplate_UpdateTemplate_Template ¶
type UpdateTemplate_UpdateTemplate_Template struct {
ID string "json:\"id\" graphql:\"id\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
Name string "json:\"name\" graphql:\"name\""
Description *string "json:\"description,omitempty\" graphql:\"description\""
Jsonconfig json.RawMessage "json:\"jsonconfig\" graphql:\"jsonconfig\""
Uischema json.RawMessage "json:\"uischema,omitempty\" graphql:\"uischema\""
Owner UpdateTemplate_UpdateTemplate_Template_Owner "json:\"owner\" graphql:\"owner\""
}
func (*UpdateTemplate_UpdateTemplate_Template) GetCreatedAt ¶
func (t *UpdateTemplate_UpdateTemplate_Template) GetCreatedAt() *time.Time
func (*UpdateTemplate_UpdateTemplate_Template) GetCreatedBy ¶
func (t *UpdateTemplate_UpdateTemplate_Template) GetCreatedBy() *string
func (*UpdateTemplate_UpdateTemplate_Template) GetDeletedAt ¶
func (t *UpdateTemplate_UpdateTemplate_Template) GetDeletedAt() *time.Time
func (*UpdateTemplate_UpdateTemplate_Template) GetDeletedBy ¶
func (t *UpdateTemplate_UpdateTemplate_Template) GetDeletedBy() *string
func (*UpdateTemplate_UpdateTemplate_Template) GetDescription ¶
func (t *UpdateTemplate_UpdateTemplate_Template) GetDescription() *string
func (*UpdateTemplate_UpdateTemplate_Template) GetID ¶
func (t *UpdateTemplate_UpdateTemplate_Template) GetID() string
func (*UpdateTemplate_UpdateTemplate_Template) GetJsonconfig ¶
func (t *UpdateTemplate_UpdateTemplate_Template) GetJsonconfig() *json.RawMessage
func (*UpdateTemplate_UpdateTemplate_Template) GetName ¶
func (t *UpdateTemplate_UpdateTemplate_Template) GetName() string
func (*UpdateTemplate_UpdateTemplate_Template) GetOwner ¶
func (t *UpdateTemplate_UpdateTemplate_Template) GetOwner() *UpdateTemplate_UpdateTemplate_Template_Owner
func (*UpdateTemplate_UpdateTemplate_Template) GetUischema ¶ added in v0.4.4
func (t *UpdateTemplate_UpdateTemplate_Template) GetUischema() *json.RawMessage
func (*UpdateTemplate_UpdateTemplate_Template) GetUpdatedAt ¶
func (t *UpdateTemplate_UpdateTemplate_Template) GetUpdatedAt() *time.Time
func (*UpdateTemplate_UpdateTemplate_Template) GetUpdatedBy ¶
func (t *UpdateTemplate_UpdateTemplate_Template) GetUpdatedBy() *string
type UpdateTemplate_UpdateTemplate_Template_Owner ¶
type UpdateTemplate_UpdateTemplate_Template_Owner struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*UpdateTemplate_UpdateTemplate_Template_Owner) GetID ¶
func (t *UpdateTemplate_UpdateTemplate_Template_Owner) GetID() string
type UpdateUser ¶
type UpdateUser struct {
UpdateUser UpdateUser_UpdateUser "json:\"updateUser\" graphql:\"updateUser\""
}
func (*UpdateUser) GetUpdateUser ¶
func (t *UpdateUser) GetUpdateUser() *UpdateUser_UpdateUser
type UpdateUserInput ¶
type UpdateUserInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
Email *string `json:"email,omitempty"`
FirstName *string `json:"firstName,omitempty"`
LastName *string `json:"lastName,omitempty"`
// The user's displayed 'friendly' name
DisplayName *string `json:"displayName,omitempty"`
// URL of the user's remote avatar
AvatarRemoteURL *string `json:"avatarRemoteURL,omitempty"`
ClearAvatarRemoteURL *bool `json:"clearAvatarRemoteURL,omitempty"`
// The user's local avatar file
AvatarLocalFile *string `json:"avatarLocalFile,omitempty"`
ClearAvatarLocalFile *bool `json:"clearAvatarLocalFile,omitempty"`
// The time the user's (local) avatar was last updated
AvatarUpdatedAt *time.Time `json:"avatarUpdatedAt,omitempty"`
ClearAvatarUpdatedAt *bool `json:"clearAvatarUpdatedAt,omitempty"`
// the time the user was last seen
LastSeen *time.Time `json:"lastSeen,omitempty"`
ClearLastSeen *bool `json:"clearLastSeen,omitempty"`
// user password hash
Password *string `json:"password,omitempty"`
ClearPassword *bool `json:"clearPassword,omitempty"`
// the Subject of the user JWT
Sub *string `json:"sub,omitempty"`
ClearSub *bool `json:"clearSub,omitempty"`
// auth provider used to register the account
AuthProvider *enums.AuthProvider `json:"authProvider,omitempty"`
AddPersonalAccessTokenIDs []string `json:"addPersonalAccessTokenIDs,omitempty"`
RemovePersonalAccessTokenIDs []string `json:"removePersonalAccessTokenIDs,omitempty"`
ClearPersonalAccessTokens *bool `json:"clearPersonalAccessTokens,omitempty"`
AddTfaSettingIDs []string `json:"addTfaSettingIDs,omitempty"`
RemoveTfaSettingIDs []string `json:"removeTfaSettingIDs,omitempty"`
ClearTfaSettings *bool `json:"clearTfaSettings,omitempty"`
SettingID *string `json:"settingID,omitempty"`
AddEmailVerificationTokenIDs []string `json:"addEmailVerificationTokenIDs,omitempty"`
RemoveEmailVerificationTokenIDs []string `json:"removeEmailVerificationTokenIDs,omitempty"`
ClearEmailVerificationTokens *bool `json:"clearEmailVerificationTokens,omitempty"`
AddPasswordResetTokenIDs []string `json:"addPasswordResetTokenIDs,omitempty"`
RemovePasswordResetTokenIDs []string `json:"removePasswordResetTokenIDs,omitempty"`
ClearPasswordResetTokens *bool `json:"clearPasswordResetTokens,omitempty"`
AddGroupIDs []string `json:"addGroupIDs,omitempty"`
RemoveGroupIDs []string `json:"removeGroupIDs,omitempty"`
ClearGroups *bool `json:"clearGroups,omitempty"`
AddOrganizationIDs []string `json:"addOrganizationIDs,omitempty"`
RemoveOrganizationIDs []string `json:"removeOrganizationIDs,omitempty"`
ClearOrganizations *bool `json:"clearOrganizations,omitempty"`
AddWebauthnIDs []string `json:"addWebauthnIDs,omitempty"`
RemoveWebauthnIDs []string `json:"removeWebauthnIDs,omitempty"`
ClearWebauthn *bool `json:"clearWebauthn,omitempty"`
}
UpdateUserInput is used for update User object. Input was generated by ent.
type UpdateUserRoleInGroup ¶
type UpdateUserRoleInGroup struct {
UpdateGroupMembership UpdateUserRoleInGroup_UpdateGroupMembership "json:\"updateGroupMembership\" graphql:\"updateGroupMembership\""
}
func (*UpdateUserRoleInGroup) GetUpdateGroupMembership ¶
func (t *UpdateUserRoleInGroup) GetUpdateGroupMembership() *UpdateUserRoleInGroup_UpdateGroupMembership
type UpdateUserRoleInGroup_UpdateGroupMembership ¶
type UpdateUserRoleInGroup_UpdateGroupMembership struct {
GroupMembership UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership "json:\"groupMembership\" graphql:\"groupMembership\""
}
func (*UpdateUserRoleInGroup_UpdateGroupMembership) GetGroupMembership ¶
func (t *UpdateUserRoleInGroup_UpdateGroupMembership) GetGroupMembership() *UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership
type UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership ¶
type UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
UserID string "json:\"userID\" graphql:\"userID\""
GroupID string "json:\"groupID\" graphql:\"groupID\""
}
func (*UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetGroupID ¶
func (t *UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetGroupID() string
func (*UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetID ¶
func (t *UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetID() string
func (*UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetRole ¶
func (t *UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetRole() *enums.Role
func (*UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetUserID ¶
func (t *UpdateUserRoleInGroup_UpdateGroupMembership_GroupMembership) GetUserID() string
type UpdateUserRoleInOrg ¶
type UpdateUserRoleInOrg struct {
UpdateOrgMembership UpdateUserRoleInOrg_UpdateOrgMembership "json:\"updateOrgMembership\" graphql:\"updateOrgMembership\""
}
func (*UpdateUserRoleInOrg) GetUpdateOrgMembership ¶
func (t *UpdateUserRoleInOrg) GetUpdateOrgMembership() *UpdateUserRoleInOrg_UpdateOrgMembership
type UpdateUserRoleInOrg_UpdateOrgMembership ¶
type UpdateUserRoleInOrg_UpdateOrgMembership struct {
OrgMembership UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership "json:\"orgMembership\" graphql:\"orgMembership\""
}
func (*UpdateUserRoleInOrg_UpdateOrgMembership) GetOrgMembership ¶
func (t *UpdateUserRoleInOrg_UpdateOrgMembership) GetOrgMembership() *UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership
type UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership ¶
type UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership struct {
ID string "json:\"id\" graphql:\"id\""
Role enums.Role "json:\"role\" graphql:\"role\""
UserID string "json:\"userID\" graphql:\"userID\""
OrganizationID string "json:\"organizationID\" graphql:\"organizationID\""
}
func (*UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetID ¶
func (t *UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetID() string
func (*UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetOrganizationID ¶
func (t *UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetOrganizationID() string
func (*UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetRole ¶
func (t *UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetRole() *enums.Role
func (*UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetUserID ¶
func (t *UpdateUserRoleInOrg_UpdateOrgMembership_OrgMembership) GetUserID() string
type UpdateUserSetting ¶
type UpdateUserSetting struct {
UpdateUserSetting UpdateUserSetting_UpdateUserSetting "json:\"updateUserSetting\" graphql:\"updateUserSetting\""
}
func (*UpdateUserSetting) GetUpdateUserSetting ¶
func (t *UpdateUserSetting) GetUpdateUserSetting() *UpdateUserSetting_UpdateUserSetting
type UpdateUserSettingInput ¶
type UpdateUserSettingInput struct {
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
ClearUpdatedAt *bool `json:"clearUpdatedAt,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
ClearUpdatedBy *bool `json:"clearUpdatedBy,omitempty"`
// user account is locked if unconfirmed or explicitly locked
Locked *bool `json:"locked,omitempty"`
// The time notifications regarding the user were silenced
SilencedAt *time.Time `json:"silencedAt,omitempty"`
ClearSilencedAt *bool `json:"clearSilencedAt,omitempty"`
// The time the user was suspended
SuspendedAt *time.Time `json:"suspendedAt,omitempty"`
ClearSuspendedAt *bool `json:"clearSuspendedAt,omitempty"`
Status *enums.UserStatus `json:"status,omitempty"`
EmailConfirmed *bool `json:"emailConfirmed,omitempty"`
// tags associated with the user
Tags []string `json:"tags,omitempty"`
AppendTags []string `json:"appendTags,omitempty"`
// specifies a user may complete authentication by verifying a WebAuthn capable device
IsWebauthnAllowed *bool `json:"isWebauthnAllowed,omitempty"`
ClearIsWebauthnAllowed *bool `json:"clearIsWebauthnAllowed,omitempty"`
// whether the user has two factor authentication enabled
IsTfaEnabled *bool `json:"isTfaEnabled,omitempty"`
ClearIsTfaEnabled *bool `json:"clearIsTfaEnabled,omitempty"`
UserID *string `json:"userID,omitempty"`
ClearUser *bool `json:"clearUser,omitempty"`
DefaultOrgID *string `json:"defaultOrgID,omitempty"`
ClearDefaultOrg *bool `json:"clearDefaultOrg,omitempty"`
}
UpdateUserSettingInput is used for update UserSetting object. Input was generated by ent.
type UpdateUserSetting_UpdateUserSetting ¶
type UpdateUserSetting_UpdateUserSetting struct {
UserSetting UpdateUserSetting_UpdateUserSetting_UserSetting "json:\"userSetting\" graphql:\"userSetting\""
}
func (*UpdateUserSetting_UpdateUserSetting) GetUserSetting ¶
func (t *UpdateUserSetting_UpdateUserSetting) GetUserSetting() *UpdateUserSetting_UpdateUserSetting_UserSetting
type UpdateUserSetting_UpdateUserSetting_UserSetting ¶
type UpdateUserSetting_UpdateUserSetting_UserSetting struct {
ID string "json:\"id\" graphql:\"id\""
SilencedAt *time.Time "json:\"silencedAt,omitempty\" graphql:\"silencedAt\""
Status enums.UserStatus "json:\"status\" graphql:\"status\""
DefaultOrg *UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg "json:\"defaultOrg,omitempty\" graphql:\"defaultOrg\""
Tags []string "json:\"tags\" graphql:\"tags\""
Locked bool "json:\"locked\" graphql:\"locked\""
IsTfaEnabled *bool "json:\"isTfaEnabled,omitempty\" graphql:\"isTfaEnabled\""
EmailConfirmed bool "json:\"emailConfirmed\" graphql:\"emailConfirmed\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
DeletedAt *time.Time "json:\"deletedAt,omitempty\" graphql:\"deletedAt\""
DeletedBy *string "json:\"deletedBy,omitempty\" graphql:\"deletedBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
}
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetCreatedAt ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetCreatedAt() *time.Time
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetCreatedBy ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetCreatedBy() *string
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetDefaultOrg ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetDefaultOrg() *UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetDeletedAt ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetDeletedAt() *time.Time
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetDeletedBy ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetDeletedBy() *string
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetEmailConfirmed ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetEmailConfirmed() bool
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetID ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetID() string
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetIsTfaEnabled ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetIsTfaEnabled() *bool
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetLocked ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetLocked() bool
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetSilencedAt ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetSilencedAt() *time.Time
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetStatus ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetStatus() *enums.UserStatus
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetTags ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetTags() []string
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetUpdatedAt ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetUpdatedAt() *time.Time
func (*UpdateUserSetting_UpdateUserSetting_UserSetting) GetUpdatedBy ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting) GetUpdatedBy() *string
type UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg ¶
type UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
}
func (*UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg) GetID ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg) GetID() string
func (*UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg) GetName ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg) GetName() string
func (*UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg) GetPersonalOrg ¶
func (t *UpdateUserSetting_UpdateUserSetting_UserSetting_DefaultOrg) GetPersonalOrg() *bool
type UpdateUser_UpdateUser ¶
type UpdateUser_UpdateUser struct {
User UpdateUser_UpdateUser_User "json:\"user\" graphql:\"user\""
}
func (*UpdateUser_UpdateUser) GetUser ¶
func (t *UpdateUser_UpdateUser) GetUser() *UpdateUser_UpdateUser_User
type UpdateUser_UpdateUser_User ¶
type UpdateUser_UpdateUser_User struct {
ID string "json:\"id\" graphql:\"id\""
Email string "json:\"email\" graphql:\"email\""
FirstName string "json:\"firstName\" graphql:\"firstName\""
LastName string "json:\"lastName\" graphql:\"lastName\""
DisplayName string "json:\"displayName\" graphql:\"displayName\""
AvatarRemoteURL *string "json:\"avatarRemoteURL,omitempty\" graphql:\"avatarRemoteURL\""
AvatarLocalFile *string "json:\"avatarLocalFile,omitempty\" graphql:\"avatarLocalFile\""
Sub *string "json:\"sub,omitempty\" graphql:\"sub\""
AuthProvider enums.AuthProvider "json:\"authProvider\" graphql:\"authProvider\""
GroupMemberships []*UpdateUser_UpdateUser_User_GroupMemberships "json:\"groupMemberships,omitempty\" graphql:\"groupMemberships\""
OrgMemberships []*UpdateUser_UpdateUser_User_OrgMemberships "json:\"orgMemberships,omitempty\" graphql:\"orgMemberships\""
Setting UpdateUser_UpdateUser_User_Setting "json:\"setting\" graphql:\"setting\""
}
func (*UpdateUser_UpdateUser_User) GetAuthProvider ¶
func (t *UpdateUser_UpdateUser_User) GetAuthProvider() *enums.AuthProvider
func (*UpdateUser_UpdateUser_User) GetAvatarLocalFile ¶
func (t *UpdateUser_UpdateUser_User) GetAvatarLocalFile() *string
func (*UpdateUser_UpdateUser_User) GetAvatarRemoteURL ¶
func (t *UpdateUser_UpdateUser_User) GetAvatarRemoteURL() *string
func (*UpdateUser_UpdateUser_User) GetDisplayName ¶
func (t *UpdateUser_UpdateUser_User) GetDisplayName() string
func (*UpdateUser_UpdateUser_User) GetEmail ¶
func (t *UpdateUser_UpdateUser_User) GetEmail() string
func (*UpdateUser_UpdateUser_User) GetFirstName ¶
func (t *UpdateUser_UpdateUser_User) GetFirstName() string
func (*UpdateUser_UpdateUser_User) GetGroupMemberships ¶
func (t *UpdateUser_UpdateUser_User) GetGroupMemberships() []*UpdateUser_UpdateUser_User_GroupMemberships
func (*UpdateUser_UpdateUser_User) GetID ¶
func (t *UpdateUser_UpdateUser_User) GetID() string
func (*UpdateUser_UpdateUser_User) GetLastName ¶
func (t *UpdateUser_UpdateUser_User) GetLastName() string
func (*UpdateUser_UpdateUser_User) GetOrgMemberships ¶
func (t *UpdateUser_UpdateUser_User) GetOrgMemberships() []*UpdateUser_UpdateUser_User_OrgMemberships
func (*UpdateUser_UpdateUser_User) GetSetting ¶
func (t *UpdateUser_UpdateUser_User) GetSetting() *UpdateUser_UpdateUser_User_Setting
func (*UpdateUser_UpdateUser_User) GetSub ¶
func (t *UpdateUser_UpdateUser_User) GetSub() *string
type UpdateUser_UpdateUser_User_GroupMemberships ¶
type UpdateUser_UpdateUser_User_GroupMemberships struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*UpdateUser_UpdateUser_User_GroupMemberships) GetID ¶
func (t *UpdateUser_UpdateUser_User_GroupMemberships) GetID() string
type UpdateUser_UpdateUser_User_OrgMemberships ¶
type UpdateUser_UpdateUser_User_OrgMemberships struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*UpdateUser_UpdateUser_User_OrgMemberships) GetID ¶
func (t *UpdateUser_UpdateUser_User_OrgMemberships) GetID() string
type UpdateUser_UpdateUser_User_Setting ¶
type UpdateUser_UpdateUser_User_Setting struct {
EmailConfirmed bool "json:\"emailConfirmed\" graphql:\"emailConfirmed\""
DefaultOrg *UpdateUser_UpdateUser_User_Setting_DefaultOrg "json:\"defaultOrg,omitempty\" graphql:\"defaultOrg\""
Locked bool "json:\"locked\" graphql:\"locked\""
Status enums.UserStatus "json:\"status\" graphql:\"status\""
Tags []string "json:\"tags\" graphql:\"tags\""
SuspendedAt *time.Time "json:\"suspendedAt,omitempty\" graphql:\"suspendedAt\""
CreatedAt *time.Time "json:\"createdAt,omitempty\" graphql:\"createdAt\""
CreatedBy *string "json:\"createdBy,omitempty\" graphql:\"createdBy\""
UpdatedAt *time.Time "json:\"updatedAt,omitempty\" graphql:\"updatedAt\""
UpdatedBy *string "json:\"updatedBy,omitempty\" graphql:\"updatedBy\""
SilencedAt *time.Time "json:\"silencedAt,omitempty\" graphql:\"silencedAt\""
}
func (*UpdateUser_UpdateUser_User_Setting) GetCreatedAt ¶
func (t *UpdateUser_UpdateUser_User_Setting) GetCreatedAt() *time.Time
func (*UpdateUser_UpdateUser_User_Setting) GetCreatedBy ¶
func (t *UpdateUser_UpdateUser_User_Setting) GetCreatedBy() *string
func (*UpdateUser_UpdateUser_User_Setting) GetDefaultOrg ¶
func (t *UpdateUser_UpdateUser_User_Setting) GetDefaultOrg() *UpdateUser_UpdateUser_User_Setting_DefaultOrg
func (*UpdateUser_UpdateUser_User_Setting) GetEmailConfirmed ¶
func (t *UpdateUser_UpdateUser_User_Setting) GetEmailConfirmed() bool
func (*UpdateUser_UpdateUser_User_Setting) GetLocked ¶
func (t *UpdateUser_UpdateUser_User_Setting) GetLocked() bool
func (*UpdateUser_UpdateUser_User_Setting) GetSilencedAt ¶
func (t *UpdateUser_UpdateUser_User_Setting) GetSilencedAt() *time.Time
func (*UpdateUser_UpdateUser_User_Setting) GetStatus ¶
func (t *UpdateUser_UpdateUser_User_Setting) GetStatus() *enums.UserStatus
func (*UpdateUser_UpdateUser_User_Setting) GetSuspendedAt ¶
func (t *UpdateUser_UpdateUser_User_Setting) GetSuspendedAt() *time.Time
func (*UpdateUser_UpdateUser_User_Setting) GetTags ¶
func (t *UpdateUser_UpdateUser_User_Setting) GetTags() []string
func (*UpdateUser_UpdateUser_User_Setting) GetUpdatedAt ¶
func (t *UpdateUser_UpdateUser_User_Setting) GetUpdatedAt() *time.Time
func (*UpdateUser_UpdateUser_User_Setting) GetUpdatedBy ¶
func (t *UpdateUser_UpdateUser_User_Setting) GetUpdatedBy() *string
type UpdateUser_UpdateUser_User_Setting_DefaultOrg ¶
type UpdateUser_UpdateUser_User_Setting_DefaultOrg struct {
ID string "json:\"id\" graphql:\"id\""
Name string "json:\"name\" graphql:\"name\""
PersonalOrg *bool "json:\"personalOrg,omitempty\" graphql:\"personalOrg\""
}
func (*UpdateUser_UpdateUser_User_Setting_DefaultOrg) GetID ¶
func (t *UpdateUser_UpdateUser_User_Setting_DefaultOrg) GetID() string
func (*UpdateUser_UpdateUser_User_Setting_DefaultOrg) GetName ¶
func (t *UpdateUser_UpdateUser_User_Setting_DefaultOrg) GetName() string
func (*UpdateUser_UpdateUser_User_Setting_DefaultOrg) GetPersonalOrg ¶
func (t *UpdateUser_UpdateUser_User_Setting_DefaultOrg) GetPersonalOrg() *bool
type User ¶
type User struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
Email string `json:"email"`
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
// The user's displayed 'friendly' name
DisplayName string `json:"displayName"`
// URL of the user's remote avatar
AvatarRemoteURL *string `json:"avatarRemoteURL,omitempty"`
// The user's local avatar file
AvatarLocalFile *string `json:"avatarLocalFile,omitempty"`
// The time the user's (local) avatar was last updated
AvatarUpdatedAt *time.Time `json:"avatarUpdatedAt,omitempty"`
// the time the user was last seen
LastSeen *time.Time `json:"lastSeen,omitempty"`
// the Subject of the user JWT
Sub *string `json:"sub,omitempty"`
// auth provider used to register the account
AuthProvider enums.AuthProvider `json:"authProvider"`
PersonalAccessTokens []*PersonalAccessToken `json:"personalAccessTokens,omitempty"`
TfaSettings []*TFASetting `json:"tfaSettings,omitempty"`
Setting *UserSetting `json:"setting"`
Groups []*Group `json:"groups,omitempty"`
Organizations []*Organization `json:"organizations,omitempty"`
GroupMemberships []*GroupMembership `json:"groupMemberships,omitempty"`
OrgMemberships []*OrgMembership `json:"orgMemberships,omitempty"`
}
type UserConnection ¶
type UserConnection struct {
// A list of edges.
Edges []*UserEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type UserCreatePayload ¶
type UserCreatePayload struct {
// Created user
User *User `json:"user"`
}
Return response for createUser mutation
type UserDeletePayload ¶
type UserDeletePayload struct {
// Deleted user ID
DeletedID string `json:"deletedID"`
}
Return response for deleteUser mutation
type UserEdge ¶
type UserEdge struct {
// The item at the end of the edge.
Node *User `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type UserOrder ¶
type UserOrder struct {
// The ordering direction.
Direction OrderDirection `json:"direction"`
// The field by which to order Users.
Field UserOrderField `json:"field"`
}
Ordering options for User connections
type UserOrderField ¶
type UserOrderField string
Properties by which User connections can be ordered.
const ( UserOrderFieldFirstName UserOrderField = "first_name" UserOrderFieldLastName UserOrderField = "last_name" UserOrderFieldDisplayName UserOrderField = "display_name" )
func (UserOrderField) IsValid ¶
func (e UserOrderField) IsValid() bool
func (UserOrderField) MarshalGQL ¶
func (e UserOrderField) MarshalGQL(w io.Writer)
func (UserOrderField) String ¶
func (e UserOrderField) String() string
func (*UserOrderField) UnmarshalGQL ¶
func (e *UserOrderField) UnmarshalGQL(v interface{}) error
type UserSetting ¶
type UserSetting struct {
ID string `json:"id"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedBy *string `json:"updatedBy,omitempty"`
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedBy *string `json:"deletedBy,omitempty"`
UserID *string `json:"userID,omitempty"`
// user account is locked if unconfirmed or explicitly locked
Locked bool `json:"locked"`
// The time notifications regarding the user were silenced
SilencedAt *time.Time `json:"silencedAt,omitempty"`
// The time the user was suspended
SuspendedAt *time.Time `json:"suspendedAt,omitempty"`
Status enums.UserStatus `json:"status"`
EmailConfirmed bool `json:"emailConfirmed"`
// tags associated with the user
Tags []string `json:"tags"`
// specifies a user may complete authentication by verifying a WebAuthn capable device
IsWebauthnAllowed *bool `json:"isWebauthnAllowed,omitempty"`
// whether the user has two factor authentication enabled
IsTfaEnabled *bool `json:"isTfaEnabled,omitempty"`
User *User `json:"user,omitempty"`
// organization to load on user login
DefaultOrg *Organization `json:"defaultOrg,omitempty"`
}
func (UserSetting) IsNode ¶
func (UserSetting) IsNode()
type UserSettingConnection ¶
type UserSettingConnection struct {
// A list of edges.
Edges []*UserSettingEdge `json:"edges,omitempty"`
// Information to aid in pagination.
PageInfo *PageInfo `json:"pageInfo"`
// Identifies the total count of items in the connection.
TotalCount int64 `json:"totalCount"`
}
A connection to a list of items.
type UserSettingEdge ¶
type UserSettingEdge struct {
// The item at the end of the edge.
Node *UserSetting `json:"node,omitempty"`
// A cursor for use in pagination.
Cursor string `json:"cursor"`
}
An edge in a connection.
type UserSettingUpdatePayload ¶
type UserSettingUpdatePayload struct {
// Updated userSetting
UserSetting *UserSetting `json:"userSetting"`
}
Return response for updateUserSetting mutation
type UserSettingWhereInput ¶
type UserSettingWhereInput struct {
Not *UserSettingWhereInput `json:"not,omitempty"`
And []*UserSettingWhereInput `json:"and,omitempty"`
Or []*UserSettingWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// user_id field predicates
UserID *string `json:"userID,omitempty"`
UserIDNeq *string `json:"userIDNEQ,omitempty"`
UserIDIn []string `json:"userIDIn,omitempty"`
UserIDNotIn []string `json:"userIDNotIn,omitempty"`
UserIDGt *string `json:"userIDGT,omitempty"`
UserIDGte *string `json:"userIDGTE,omitempty"`
UserIDLt *string `json:"userIDLT,omitempty"`
UserIDLte *string `json:"userIDLTE,omitempty"`
UserIDContains *string `json:"userIDContains,omitempty"`
UserIDHasPrefix *string `json:"userIDHasPrefix,omitempty"`
UserIDHasSuffix *string `json:"userIDHasSuffix,omitempty"`
UserIDIsNil *bool `json:"userIDIsNil,omitempty"`
UserIDNotNil *bool `json:"userIDNotNil,omitempty"`
UserIDEqualFold *string `json:"userIDEqualFold,omitempty"`
UserIDContainsFold *string `json:"userIDContainsFold,omitempty"`
// locked field predicates
Locked *bool `json:"locked,omitempty"`
LockedNeq *bool `json:"lockedNEQ,omitempty"`
// silenced_at field predicates
SilencedAt *time.Time `json:"silencedAt,omitempty"`
SilencedAtNeq *time.Time `json:"silencedAtNEQ,omitempty"`
SilencedAtIn []*time.Time `json:"silencedAtIn,omitempty"`
SilencedAtNotIn []*time.Time `json:"silencedAtNotIn,omitempty"`
SilencedAtGt *time.Time `json:"silencedAtGT,omitempty"`
SilencedAtGte *time.Time `json:"silencedAtGTE,omitempty"`
SilencedAtLt *time.Time `json:"silencedAtLT,omitempty"`
SilencedAtLte *time.Time `json:"silencedAtLTE,omitempty"`
SilencedAtIsNil *bool `json:"silencedAtIsNil,omitempty"`
SilencedAtNotNil *bool `json:"silencedAtNotNil,omitempty"`
// suspended_at field predicates
SuspendedAt *time.Time `json:"suspendedAt,omitempty"`
SuspendedAtNeq *time.Time `json:"suspendedAtNEQ,omitempty"`
SuspendedAtIn []*time.Time `json:"suspendedAtIn,omitempty"`
SuspendedAtNotIn []*time.Time `json:"suspendedAtNotIn,omitempty"`
SuspendedAtGt *time.Time `json:"suspendedAtGT,omitempty"`
SuspendedAtGte *time.Time `json:"suspendedAtGTE,omitempty"`
SuspendedAtLt *time.Time `json:"suspendedAtLT,omitempty"`
SuspendedAtLte *time.Time `json:"suspendedAtLTE,omitempty"`
SuspendedAtIsNil *bool `json:"suspendedAtIsNil,omitempty"`
SuspendedAtNotNil *bool `json:"suspendedAtNotNil,omitempty"`
// status field predicates
Status *enums.UserStatus `json:"status,omitempty"`
StatusNeq *enums.UserStatus `json:"statusNEQ,omitempty"`
StatusIn []enums.UserStatus `json:"statusIn,omitempty"`
StatusNotIn []enums.UserStatus `json:"statusNotIn,omitempty"`
// email_confirmed field predicates
EmailConfirmed *bool `json:"emailConfirmed,omitempty"`
EmailConfirmedNeq *bool `json:"emailConfirmedNEQ,omitempty"`
// is_webauthn_allowed field predicates
IsWebauthnAllowed *bool `json:"isWebauthnAllowed,omitempty"`
IsWebauthnAllowedNeq *bool `json:"isWebauthnAllowedNEQ,omitempty"`
IsWebauthnAllowedIsNil *bool `json:"isWebauthnAllowedIsNil,omitempty"`
IsWebauthnAllowedNotNil *bool `json:"isWebauthnAllowedNotNil,omitempty"`
// is_tfa_enabled field predicates
IsTfaEnabled *bool `json:"isTfaEnabled,omitempty"`
IsTfaEnabledNeq *bool `json:"isTfaEnabledNEQ,omitempty"`
IsTfaEnabledIsNil *bool `json:"isTfaEnabledIsNil,omitempty"`
IsTfaEnabledNotNil *bool `json:"isTfaEnabledNotNil,omitempty"`
// user edge predicates
HasUser *bool `json:"hasUser,omitempty"`
HasUserWith []*UserWhereInput `json:"hasUserWith,omitempty"`
// default_org edge predicates
HasDefaultOrg *bool `json:"hasDefaultOrg,omitempty"`
HasDefaultOrgWith []*OrganizationWhereInput `json:"hasDefaultOrgWith,omitempty"`
}
UserSettingWhereInput is used for filtering UserSetting objects. Input was generated by ent.
type UserUpdatePayload ¶
type UserUpdatePayload struct {
// Updated user
User *User `json:"user"`
}
Return response for updateUser mutation
type UserWhereInput ¶
type UserWhereInput struct {
Not *UserWhereInput `json:"not,omitempty"`
And []*UserWhereInput `json:"and,omitempty"`
Or []*UserWhereInput `json:"or,omitempty"`
// id field predicates
ID *string `json:"id,omitempty"`
IDNeq *string `json:"idNEQ,omitempty"`
IDIn []string `json:"idIn,omitempty"`
IDNotIn []string `json:"idNotIn,omitempty"`
IDGt *string `json:"idGT,omitempty"`
IDGte *string `json:"idGTE,omitempty"`
IDLt *string `json:"idLT,omitempty"`
IDLte *string `json:"idLTE,omitempty"`
IDEqualFold *string `json:"idEqualFold,omitempty"`
IDContainsFold *string `json:"idContainsFold,omitempty"`
// created_at field predicates
CreatedAt *time.Time `json:"createdAt,omitempty"`
CreatedAtNeq *time.Time `json:"createdAtNEQ,omitempty"`
CreatedAtIn []*time.Time `json:"createdAtIn,omitempty"`
CreatedAtNotIn []*time.Time `json:"createdAtNotIn,omitempty"`
CreatedAtGt *time.Time `json:"createdAtGT,omitempty"`
CreatedAtGte *time.Time `json:"createdAtGTE,omitempty"`
CreatedAtLt *time.Time `json:"createdAtLT,omitempty"`
CreatedAtLte *time.Time `json:"createdAtLTE,omitempty"`
CreatedAtIsNil *bool `json:"createdAtIsNil,omitempty"`
CreatedAtNotNil *bool `json:"createdAtNotNil,omitempty"`
// updated_at field predicates
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
UpdatedAtNeq *time.Time `json:"updatedAtNEQ,omitempty"`
UpdatedAtIn []*time.Time `json:"updatedAtIn,omitempty"`
UpdatedAtNotIn []*time.Time `json:"updatedAtNotIn,omitempty"`
UpdatedAtGt *time.Time `json:"updatedAtGT,omitempty"`
UpdatedAtGte *time.Time `json:"updatedAtGTE,omitempty"`
UpdatedAtLt *time.Time `json:"updatedAtLT,omitempty"`
UpdatedAtLte *time.Time `json:"updatedAtLTE,omitempty"`
UpdatedAtIsNil *bool `json:"updatedAtIsNil,omitempty"`
UpdatedAtNotNil *bool `json:"updatedAtNotNil,omitempty"`
// created_by field predicates
CreatedBy *string `json:"createdBy,omitempty"`
CreatedByNeq *string `json:"createdByNEQ,omitempty"`
CreatedByIn []string `json:"createdByIn,omitempty"`
CreatedByNotIn []string `json:"createdByNotIn,omitempty"`
CreatedByGt *string `json:"createdByGT,omitempty"`
CreatedByGte *string `json:"createdByGTE,omitempty"`
CreatedByLt *string `json:"createdByLT,omitempty"`
CreatedByLte *string `json:"createdByLTE,omitempty"`
CreatedByContains *string `json:"createdByContains,omitempty"`
CreatedByHasPrefix *string `json:"createdByHasPrefix,omitempty"`
CreatedByHasSuffix *string `json:"createdByHasSuffix,omitempty"`
CreatedByIsNil *bool `json:"createdByIsNil,omitempty"`
CreatedByNotNil *bool `json:"createdByNotNil,omitempty"`
CreatedByEqualFold *string `json:"createdByEqualFold,omitempty"`
CreatedByContainsFold *string `json:"createdByContainsFold,omitempty"`
// updated_by field predicates
UpdatedBy *string `json:"updatedBy,omitempty"`
UpdatedByNeq *string `json:"updatedByNEQ,omitempty"`
UpdatedByIn []string `json:"updatedByIn,omitempty"`
UpdatedByNotIn []string `json:"updatedByNotIn,omitempty"`
UpdatedByGt *string `json:"updatedByGT,omitempty"`
UpdatedByGte *string `json:"updatedByGTE,omitempty"`
UpdatedByLt *string `json:"updatedByLT,omitempty"`
UpdatedByLte *string `json:"updatedByLTE,omitempty"`
UpdatedByContains *string `json:"updatedByContains,omitempty"`
UpdatedByHasPrefix *string `json:"updatedByHasPrefix,omitempty"`
UpdatedByHasSuffix *string `json:"updatedByHasSuffix,omitempty"`
UpdatedByIsNil *bool `json:"updatedByIsNil,omitempty"`
UpdatedByNotNil *bool `json:"updatedByNotNil,omitempty"`
UpdatedByEqualFold *string `json:"updatedByEqualFold,omitempty"`
UpdatedByContainsFold *string `json:"updatedByContainsFold,omitempty"`
// deleted_at field predicates
DeletedAt *time.Time `json:"deletedAt,omitempty"`
DeletedAtNeq *time.Time `json:"deletedAtNEQ,omitempty"`
DeletedAtIn []*time.Time `json:"deletedAtIn,omitempty"`
DeletedAtNotIn []*time.Time `json:"deletedAtNotIn,omitempty"`
DeletedAtGt *time.Time `json:"deletedAtGT,omitempty"`
DeletedAtGte *time.Time `json:"deletedAtGTE,omitempty"`
DeletedAtLt *time.Time `json:"deletedAtLT,omitempty"`
DeletedAtLte *time.Time `json:"deletedAtLTE,omitempty"`
DeletedAtIsNil *bool `json:"deletedAtIsNil,omitempty"`
DeletedAtNotNil *bool `json:"deletedAtNotNil,omitempty"`
// deleted_by field predicates
DeletedBy *string `json:"deletedBy,omitempty"`
DeletedByNeq *string `json:"deletedByNEQ,omitempty"`
DeletedByIn []string `json:"deletedByIn,omitempty"`
DeletedByNotIn []string `json:"deletedByNotIn,omitempty"`
DeletedByGt *string `json:"deletedByGT,omitempty"`
DeletedByGte *string `json:"deletedByGTE,omitempty"`
DeletedByLt *string `json:"deletedByLT,omitempty"`
DeletedByLte *string `json:"deletedByLTE,omitempty"`
DeletedByContains *string `json:"deletedByContains,omitempty"`
DeletedByHasPrefix *string `json:"deletedByHasPrefix,omitempty"`
DeletedByHasSuffix *string `json:"deletedByHasSuffix,omitempty"`
DeletedByIsNil *bool `json:"deletedByIsNil,omitempty"`
DeletedByNotNil *bool `json:"deletedByNotNil,omitempty"`
DeletedByEqualFold *string `json:"deletedByEqualFold,omitempty"`
DeletedByContainsFold *string `json:"deletedByContainsFold,omitempty"`
// email field predicates
Email *string `json:"email,omitempty"`
EmailNeq *string `json:"emailNEQ,omitempty"`
EmailIn []string `json:"emailIn,omitempty"`
EmailNotIn []string `json:"emailNotIn,omitempty"`
EmailGt *string `json:"emailGT,omitempty"`
EmailGte *string `json:"emailGTE,omitempty"`
EmailLt *string `json:"emailLT,omitempty"`
EmailLte *string `json:"emailLTE,omitempty"`
EmailContains *string `json:"emailContains,omitempty"`
EmailHasPrefix *string `json:"emailHasPrefix,omitempty"`
EmailHasSuffix *string `json:"emailHasSuffix,omitempty"`
EmailEqualFold *string `json:"emailEqualFold,omitempty"`
EmailContainsFold *string `json:"emailContainsFold,omitempty"`
// first_name field predicates
FirstName *string `json:"firstName,omitempty"`
FirstNameNeq *string `json:"firstNameNEQ,omitempty"`
FirstNameIn []string `json:"firstNameIn,omitempty"`
FirstNameNotIn []string `json:"firstNameNotIn,omitempty"`
FirstNameGt *string `json:"firstNameGT,omitempty"`
FirstNameGte *string `json:"firstNameGTE,omitempty"`
FirstNameLt *string `json:"firstNameLT,omitempty"`
FirstNameLte *string `json:"firstNameLTE,omitempty"`
FirstNameContains *string `json:"firstNameContains,omitempty"`
FirstNameHasPrefix *string `json:"firstNameHasPrefix,omitempty"`
FirstNameHasSuffix *string `json:"firstNameHasSuffix,omitempty"`
FirstNameEqualFold *string `json:"firstNameEqualFold,omitempty"`
FirstNameContainsFold *string `json:"firstNameContainsFold,omitempty"`
// last_name field predicates
LastName *string `json:"lastName,omitempty"`
LastNameNeq *string `json:"lastNameNEQ,omitempty"`
LastNameIn []string `json:"lastNameIn,omitempty"`
LastNameNotIn []string `json:"lastNameNotIn,omitempty"`
LastNameGt *string `json:"lastNameGT,omitempty"`
LastNameGte *string `json:"lastNameGTE,omitempty"`
LastNameLt *string `json:"lastNameLT,omitempty"`
LastNameLte *string `json:"lastNameLTE,omitempty"`
LastNameContains *string `json:"lastNameContains,omitempty"`
LastNameHasPrefix *string `json:"lastNameHasPrefix,omitempty"`
LastNameHasSuffix *string `json:"lastNameHasSuffix,omitempty"`
LastNameEqualFold *string `json:"lastNameEqualFold,omitempty"`
LastNameContainsFold *string `json:"lastNameContainsFold,omitempty"`
// display_name field predicates
DisplayName *string `json:"displayName,omitempty"`
DisplayNameNeq *string `json:"displayNameNEQ,omitempty"`
DisplayNameIn []string `json:"displayNameIn,omitempty"`
DisplayNameNotIn []string `json:"displayNameNotIn,omitempty"`
DisplayNameGt *string `json:"displayNameGT,omitempty"`
DisplayNameGte *string `json:"displayNameGTE,omitempty"`
DisplayNameLt *string `json:"displayNameLT,omitempty"`
DisplayNameLte *string `json:"displayNameLTE,omitempty"`
DisplayNameContains *string `json:"displayNameContains,omitempty"`
DisplayNameHasPrefix *string `json:"displayNameHasPrefix,omitempty"`
DisplayNameHasSuffix *string `json:"displayNameHasSuffix,omitempty"`
DisplayNameEqualFold *string `json:"displayNameEqualFold,omitempty"`
DisplayNameContainsFold *string `json:"displayNameContainsFold,omitempty"`
// avatar_remote_url field predicates
AvatarRemoteURL *string `json:"avatarRemoteURL,omitempty"`
AvatarRemoteURLNeq *string `json:"avatarRemoteURLNEQ,omitempty"`
AvatarRemoteURLIn []string `json:"avatarRemoteURLIn,omitempty"`
AvatarRemoteURLNotIn []string `json:"avatarRemoteURLNotIn,omitempty"`
AvatarRemoteURLGt *string `json:"avatarRemoteURLGT,omitempty"`
AvatarRemoteURLGte *string `json:"avatarRemoteURLGTE,omitempty"`
AvatarRemoteURLLt *string `json:"avatarRemoteURLLT,omitempty"`
AvatarRemoteURLLte *string `json:"avatarRemoteURLLTE,omitempty"`
AvatarRemoteURLContains *string `json:"avatarRemoteURLContains,omitempty"`
AvatarRemoteURLHasPrefix *string `json:"avatarRemoteURLHasPrefix,omitempty"`
AvatarRemoteURLHasSuffix *string `json:"avatarRemoteURLHasSuffix,omitempty"`
AvatarRemoteURLIsNil *bool `json:"avatarRemoteURLIsNil,omitempty"`
AvatarRemoteURLNotNil *bool `json:"avatarRemoteURLNotNil,omitempty"`
AvatarRemoteURLEqualFold *string `json:"avatarRemoteURLEqualFold,omitempty"`
AvatarRemoteURLContainsFold *string `json:"avatarRemoteURLContainsFold,omitempty"`
// avatar_local_file field predicates
AvatarLocalFile *string `json:"avatarLocalFile,omitempty"`
AvatarLocalFileNeq *string `json:"avatarLocalFileNEQ,omitempty"`
AvatarLocalFileIn []string `json:"avatarLocalFileIn,omitempty"`
AvatarLocalFileNotIn []string `json:"avatarLocalFileNotIn,omitempty"`
AvatarLocalFileGt *string `json:"avatarLocalFileGT,omitempty"`
AvatarLocalFileGte *string `json:"avatarLocalFileGTE,omitempty"`
AvatarLocalFileLt *string `json:"avatarLocalFileLT,omitempty"`
AvatarLocalFileLte *string `json:"avatarLocalFileLTE,omitempty"`
AvatarLocalFileContains *string `json:"avatarLocalFileContains,omitempty"`
AvatarLocalFileHasPrefix *string `json:"avatarLocalFileHasPrefix,omitempty"`
AvatarLocalFileHasSuffix *string `json:"avatarLocalFileHasSuffix,omitempty"`
AvatarLocalFileIsNil *bool `json:"avatarLocalFileIsNil,omitempty"`
AvatarLocalFileNotNil *bool `json:"avatarLocalFileNotNil,omitempty"`
AvatarLocalFileEqualFold *string `json:"avatarLocalFileEqualFold,omitempty"`
AvatarLocalFileContainsFold *string `json:"avatarLocalFileContainsFold,omitempty"`
// avatar_updated_at field predicates
AvatarUpdatedAt *time.Time `json:"avatarUpdatedAt,omitempty"`
AvatarUpdatedAtNeq *time.Time `json:"avatarUpdatedAtNEQ,omitempty"`
AvatarUpdatedAtIn []*time.Time `json:"avatarUpdatedAtIn,omitempty"`
AvatarUpdatedAtNotIn []*time.Time `json:"avatarUpdatedAtNotIn,omitempty"`
AvatarUpdatedAtGt *time.Time `json:"avatarUpdatedAtGT,omitempty"`
AvatarUpdatedAtGte *time.Time `json:"avatarUpdatedAtGTE,omitempty"`
AvatarUpdatedAtLt *time.Time `json:"avatarUpdatedAtLT,omitempty"`
AvatarUpdatedAtLte *time.Time `json:"avatarUpdatedAtLTE,omitempty"`
AvatarUpdatedAtIsNil *bool `json:"avatarUpdatedAtIsNil,omitempty"`
AvatarUpdatedAtNotNil *bool `json:"avatarUpdatedAtNotNil,omitempty"`
// last_seen field predicates
LastSeen *time.Time `json:"lastSeen,omitempty"`
LastSeenNeq *time.Time `json:"lastSeenNEQ,omitempty"`
LastSeenIn []*time.Time `json:"lastSeenIn,omitempty"`
LastSeenNotIn []*time.Time `json:"lastSeenNotIn,omitempty"`
LastSeenGt *time.Time `json:"lastSeenGT,omitempty"`
LastSeenGte *time.Time `json:"lastSeenGTE,omitempty"`
LastSeenLt *time.Time `json:"lastSeenLT,omitempty"`
LastSeenLte *time.Time `json:"lastSeenLTE,omitempty"`
LastSeenIsNil *bool `json:"lastSeenIsNil,omitempty"`
LastSeenNotNil *bool `json:"lastSeenNotNil,omitempty"`
// sub field predicates
Sub *string `json:"sub,omitempty"`
SubNeq *string `json:"subNEQ,omitempty"`
SubIn []string `json:"subIn,omitempty"`
SubNotIn []string `json:"subNotIn,omitempty"`
SubGt *string `json:"subGT,omitempty"`
SubGte *string `json:"subGTE,omitempty"`
SubLt *string `json:"subLT,omitempty"`
SubLte *string `json:"subLTE,omitempty"`
SubContains *string `json:"subContains,omitempty"`
SubHasPrefix *string `json:"subHasPrefix,omitempty"`
SubHasSuffix *string `json:"subHasSuffix,omitempty"`
SubIsNil *bool `json:"subIsNil,omitempty"`
SubNotNil *bool `json:"subNotNil,omitempty"`
SubEqualFold *string `json:"subEqualFold,omitempty"`
SubContainsFold *string `json:"subContainsFold,omitempty"`
// auth_provider field predicates
AuthProvider *enums.AuthProvider `json:"authProvider,omitempty"`
AuthProviderNeq *enums.AuthProvider `json:"authProviderNEQ,omitempty"`
AuthProviderIn []enums.AuthProvider `json:"authProviderIn,omitempty"`
AuthProviderNotIn []enums.AuthProvider `json:"authProviderNotIn,omitempty"`
// personal_access_tokens edge predicates
HasPersonalAccessTokens *bool `json:"hasPersonalAccessTokens,omitempty"`
HasPersonalAccessTokensWith []*PersonalAccessTokenWhereInput `json:"hasPersonalAccessTokensWith,omitempty"`
// tfa_settings edge predicates
HasTfaSettings *bool `json:"hasTfaSettings,omitempty"`
HasTfaSettingsWith []*TFASettingWhereInput `json:"hasTfaSettingsWith,omitempty"`
// setting edge predicates
HasSetting *bool `json:"hasSetting,omitempty"`
HasSettingWith []*UserSettingWhereInput `json:"hasSettingWith,omitempty"`
// groups edge predicates
HasGroups *bool `json:"hasGroups,omitempty"`
HasGroupsWith []*GroupWhereInput `json:"hasGroupsWith,omitempty"`
// organizations edge predicates
HasOrganizations *bool `json:"hasOrganizations,omitempty"`
HasOrganizationsWith []*OrganizationWhereInput `json:"hasOrganizationsWith,omitempty"`
// group_memberships edge predicates
HasGroupMemberships *bool `json:"hasGroupMemberships,omitempty"`
HasGroupMembershipsWith []*GroupMembershipWhereInput `json:"hasGroupMembershipsWith,omitempty"`
// org_memberships edge predicates
HasOrgMemberships *bool `json:"hasOrgMemberships,omitempty"`
HasOrgMembershipsWith []*OrgMembershipWhereInput `json:"hasOrgMembershipsWith,omitempty"`
}
UserWhereInput is used for filtering User objects. Input was generated by ent.