Documentation ¶
Index ¶
Constants ¶
View Source
const ( // CheckTypeIndividual represents the individual VCS check type. CheckTypeIndividual = "INDIVIDUAL" // CheckTypeAggregated represents the aggregated VCS check type. CheckTypeAggregated = "AGGREGATED" // CheckTypeAll represents the summary of individual and aggregated VCS checks. CheckTypeAll = "ALL" // CheckTypeDefault is the default VCS check type. CheckTypeDefault = CheckTypeIndividual )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CustomVCSInput ¶
type CustomVCSInput struct { Name graphql.String `json:"name"` SpaceID graphql.ID `json:"spaceID"` Labels *[]graphql.String `json:"labels"` Description *graphql.String `json:"description"` IsDefault *graphql.Boolean `json:"isDefault"` VCSChecks *graphql.String `json:"vcsChecks"` }
CustomVCSInput represents the custom VCS input data.
type CustomVCSUpdateInput ¶
type CustomVCSUpdateInput struct { ID graphql.ID `json:"id"` SpaceID graphql.ID `json:"space"` Labels *[]graphql.String `json:"labels"` Description *graphql.String `json:"description"` VCSChecks *graphql.String `json:"vcsChecks"` }
CustomVCSUpdateInput represents the custom VCS update input data.
Click to show internal directories.
Click to hide internal directories.