1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-04 13:44:00 +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"; import { BitwardenProductType } from "../../enums/bitwarden-product-type.enum";
export class OrganizationSubscriptionUpdateRequest { export class OrganizationSubscriptionUpdateRequest {
productType: BitwardenProductType; bitwardenProduct: BitwardenProductType;
/** /**
* The number of seats to add or remove from the subscription. * The number of seats to add or remove from the subscription.
@ -28,7 +28,7 @@ export class OrganizationSubscriptionUpdateRequest {
maxAutoscaleServiceAccounts?: number; maxAutoscaleServiceAccounts?: number;
constructor(productType: BitwardenProductType) { constructor(productType: BitwardenProductType) {
this.productType = productType; this.bitwardenProduct = productType;
} }
/** /**