Skip to content

Commit

Permalink
Merge pull request #3138 from hashicorp/data/regeneration-from-78b612…
Browse files Browse the repository at this point in the history
…baa1078a06898fb1d3822fb918fbe372f3-rest-api-specs

Data: Rest Api Specs - regenerating based on 78b612b
  • Loading branch information
tombuildsstuff authored Oct 10, 2023
2 parents 78b612b + fd222ee commit 015381b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ internal class EventPropertiesModel
[JsonPropertyName("adjustmentsInBillingCurrency")]
public AmountWithExchangeRateModel? AdjustmentsInBillingCurrency { get; set; }

[JsonPropertyName("billingAccountDisplayName")]
public string? BillingAccountDisplayName { get; set; }

[JsonPropertyName("billingAccountId")]
public string? BillingAccountId { get; set; }

[JsonPropertyName("billingCurrency")]
public string? BillingCurrency { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Pandora.Definitions.ResourceManager.Consumption.v2023_11_01.Lots;

[ConstantType(ConstantTypeAttribute.ConstantType.String)]
internal enum OrgTypeConstant
internal enum OrganizationTypeConstant
{
[Description("Contributor")]
Contributor,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ internal class Definition : ResourceDefinition
public IEnumerable<System.Type> Constants => new List<System.Type>
{
typeof(LotSourceConstant),
typeof(OrgTypeConstant),
typeof(OrganizationTypeConstant),
typeof(StatusConstant),
};
public IEnumerable<System.Type> Models => new List<System.Type>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ internal class LotPropertiesModel
[JsonPropertyName("isEstimatedBalance")]
public bool? IsEstimatedBalance { get; set; }

[JsonPropertyName("orgType")]
public OrgTypeConstant? OrgType { get; set; }
[JsonPropertyName("OrganizationType")]
public OrganizationTypeConstant? OrganizationType { get; set; }

[JsonPropertyName("originalAmount")]
public AmountModel? OriginalAmount { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ namespace Pandora.Definitions.ResourceManager;
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.


// Generated from Swagger revision "75fe114f1abd9d9269591123eb96ac4660e7a095"
// Generated from Swagger revision "e1017d9ab49f41296177b4f4c9ac741fb7de044d"

0 comments on commit 015381b

Please sign in to comment.