mirror of
https://github.com/LukeHagar/Dokploy-ts-sdk.git
synced 2025-12-07 04:19:39 +00:00
27 lines
1.2 KiB
Markdown
27 lines
1.2 KiB
Markdown
# ApplicationSaveBitbucketProviderRequest
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { ApplicationSaveBitbucketProviderRequest } from "dokploy/models/operations";
|
|
|
|
let value: ApplicationSaveBitbucketProviderRequest = {
|
|
bitbucketBranch: "<value>",
|
|
bitbucketBuildPath: null,
|
|
bitbucketOwner: "<value>",
|
|
bitbucketRepository: "<value>",
|
|
bitbucketId: "<id>",
|
|
applicationId: "<id>",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description |
|
|
| --------------------- | --------------------- | --------------------- | --------------------- |
|
|
| `bitbucketBranch` | *string* | :heavy_check_mark: | N/A |
|
|
| `bitbucketBuildPath` | *string* | :heavy_check_mark: | N/A |
|
|
| `bitbucketOwner` | *string* | :heavy_check_mark: | N/A |
|
|
| `bitbucketRepository` | *string* | :heavy_check_mark: | N/A |
|
|
| `bitbucketId` | *string* | :heavy_check_mark: | N/A |
|
|
| `applicationId` | *string* | :heavy_check_mark: | N/A | |