Class CreateProjectResponse
Response from project creation.
public record CreateProjectResponse : IEquatable<CreateProjectResponse>
- Inheritance
-
CreateProjectResponse
- Implements
- Inherited Members
Constructors
CreateProjectResponse(bool, int?, string?, string?)
Response from project creation.
public CreateProjectResponse(bool Success, int? ProjectId = null, string? Error = null, string? RedirectUrl = null)
Parameters
SuccessboolWhether creation succeeded.
ProjectIdint?ID of the created project.
ErrorstringError message if creation failed.
RedirectUrlstringURL for GitHub App installation if needed.
Properties
Error
Error message if creation failed.
public string? Error { get; init; }
Property Value
ProjectId
ID of the created project.
public int? ProjectId { get; init; }
Property Value
- int?
RedirectUrl
URL for GitHub App installation if needed.
public string? RedirectUrl { get; init; }
Property Value
Success
Whether creation succeeded.
public bool Success { get; init; }