Skip to content

Commit

Permalink
Merge pull request #285 from platformsh/improvement/add-environment-o…
Browse files Browse the repository at this point in the history
…ption-property-in-subscription

Add  environment_options property in subscription model
  • Loading branch information
shakaman authored Nov 16, 2023
2 parents 999cb06 + 77f5456 commit bd13d79
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/model/Subscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ export default class Subscription extends Ressource {
initialize?: Record<string, string>;
};

environment_options: string[];
enterprise_tag: string;
support_tier: string;

Expand Down Expand Up @@ -152,6 +153,7 @@ export default class Subscription extends Ressource {
this.support_tier = "";
this.blackfire = "";
this.observability_suite = "";
this.environment_options = [];
}

static async get(params: SubscriptionGetParams, customUrl?: string) {
Expand Down

0 comments on commit bd13d79

Please sign in to comment.