Skip to content

Commit

Permalink
[S360 Correctness] Microsoft.Billing Adding missing property in GA sw…
Browse files Browse the repository at this point in the history
…agger (Azure#17458)

* Adding totalCount to transactionList result

* Adding BilingProfileInfo on agreements to GA version

* Adding type object
  • Loading branch information
muazmian authored and mstrisoline committed Feb 1, 2022
1 parent 3c162d5 commit 3585209
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6429,6 +6429,14 @@
"modelAsString": true
}
},
"billingProfilesInfo": {
"type": "array",
"description": "The list of billing profiles associated with agreement and present only for specific agreements.",
"readOnly": true,
"items": {
"$ref": "#/definitions/BillingProfileInfo"
}
},
"effectiveDate": {
"description": "The date from which the agreement is effective.",
"type": "string",
Expand All @@ -6455,6 +6463,24 @@
}
}
},
"BillingProfileInfo": {
"type": "object",
"description": "Details about billing profile associated with agreement and available only for specific agreements.",
"properties": {
"billingProfileId": {
"description": "The unique identifier for the billing profile.",
"type": "string"
},
"billingProfileDisplayName": {
"description": "The name of the billing profile",
"type": "string"
},
"indirectRelationshipOrganizationName": {
"description": "Billing account name. This property is available for a specific type of agreement.",
"type": "string"
}
}
},
"Participants": {
"description": "The details about a participant.",
"properties": {
Expand Down

0 comments on commit 3585209

Please sign in to comment.