Skip to content

Commit

Permalink
adding missing struct
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoDelGamba committed Nov 30, 2023
1 parent fe24f85 commit dd1ba1f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions azuredevops/pipelines/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,15 @@ var ConfigurationTypeValues = configurationTypeValuesType{
DesignerHyphenJson: "designerHyphenJson",
}

type CreatePipelineRepositoryParameters struct {
Id *string `json:"id,omitempty"`
Type *string `json:"type,omitempty"`
}

type CreatePipelineConfigurationParameters struct {
Type *ConfigurationType `json:"type,omitempty"`
Repository *CreatePipelineRepositoryParameters `json:"repository,omitempty"`
Path *string `json:"path,omitempty"`
}

type CreatePipelineParameters struct {
Expand Down

0 comments on commit dd1ba1f

Please sign in to comment.