Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6423,6 +6423,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 @@ -6449,6 +6457,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