1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-02 13:23:29 +01:00

[AC-1418] Update request model to match server

This commit is contained in:
Shane Melton 2023-06-22 15:01:45 -07:00
parent ccd798beb3
commit 0bd76a9397
No known key found for this signature in database

View File

@ -1,7 +1,7 @@
import { BitwardenProductType } from "../../enums/bitwarden-product-type.enum";
export class OrganizationSubscriptionUpdateRequest {
productType: BitwardenProductType;
bitwardenProduct: BitwardenProductType;
/**
* The number of seats to add or remove from the subscription.
@ -28,7 +28,7 @@ export class OrganizationSubscriptionUpdateRequest {
maxAutoscaleServiceAccounts?: number;
constructor(productType: BitwardenProductType) {
this.productType = productType;
this.bitwardenProduct = productType;
}
/**