mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-03 13:33:32 +01:00
[AC-1418] Update request model to match server
This commit is contained in:
parent
ccd798beb3
commit
0bd76a9397
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user