Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type OrganizationService ¶
type OrganizationService struct {
// contains filtered or unexported fields
}
func NewService ¶
func NewService() OrganizationService
func (*OrganizationService) GetOrganization ¶
func (os *OrganizationService) GetOrganization(organizationID string) (models.Organization, error)
func (*OrganizationService) ListOrganizations ¶
func (os *OrganizationService) ListOrganizations() (models.PaginatedResponse[models.Organization], error)
type OrganizationServicer ¶
type OrganizationServicer interface {
ListOrganizations() (models.PaginatedResponse[models.Organization], error)
GetOrganization(organizationID string) (models.Organization, error)
}
func NewTestService ¶
func NewTestService(httpClient httputil.Client) OrganizationServicer
Click to show internal directories.
Click to hide internal directories.