@@ -376,6 +376,11 @@ export interface BillingProfileListResult {
376376   * NOTE: This property will not be serialized. It can only be populated by the server. 
377377   */ 
378378  readonly  value ?: BillingProfile [ ] ; 
379+   /** 
380+    * Total number of records. 
381+    * NOTE: This property will not be serialized. It can only be populated by the server. 
382+    */ 
383+   readonly  totalCount ?: number ; 
379384  /** 
380385   * The link (url) to the next page of results. 
381386   * NOTE: This property will not be serialized. It can only be populated by the server. 
@@ -767,6 +772,16 @@ export interface AgreementListResult {
767772  readonly  nextLink ?: string ; 
768773} 
769774
775+ /** Details about billing profile associated with agreement and available only for specific agreements. */ 
776+ export  interface  BillingProfileInfo  { 
777+   /** The unique identifier for the billing profile. */ 
778+   billingProfileId ?: string ; 
779+   /** The name of the billing profile */ 
780+   billingProfileDisplayName ?: string ; 
781+   /** Billing account name. This property is available for a specific type of agreement. */ 
782+   indirectRelationshipOrganizationName ?: string ; 
783+ } 
784+ 
770785/** The details about a participant. */ 
771786export  interface  Participants  { 
772787  /** 
@@ -1916,6 +1931,11 @@ export type Agreement = Resource & {
19161931   * NOTE: This property will not be serialized. It can only be populated by the server. 
19171932   */ 
19181933  readonly  acceptanceMode ?: AcceptanceMode ; 
1934+   /** 
1935+    * The list of billing profiles associated with agreement and present only for specific agreements. 
1936+    * NOTE: This property will not be serialized. It can only be populated by the server. 
1937+    */ 
1938+   readonly  billingProfileInfo ?: BillingProfileInfo ; 
19191939  /** 
19201940   * The date from which the agreement is effective. 
19211941   * NOTE: This property will not be serialized. It can only be populated by the server. 
0 commit comments