Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserSubscriptionView
Please create a React-JS view called "UserSubscriptionView" for the fields of the UserSubscription entity. The UserSubscriptionView must contain the following fields: - name: AutoRenew type: BOOL - name: EndUtc type: DATE - name: IsTrial type: BOOL - name: StartUtc type: DATE - name: SubscriptionPlan type: SubscriptionPlan - name: UserAccount type: UserAccount The data source for the [SubscriptionPlan] select control should be loaded from the relative URL: "/SubscriptionPlanService/subscriptionplan" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing UserSubscription entity should be loaded from the relative URL: "/SubscriptionPlanService/usersubscription/{id}" (HTTP-GET) If a new UserSubscription entity has been created, the new entity should be posted to the relative URL: "/SubscriptionPlanService/usersubscription" (HTTP-POST) If an existing UserSubscription entity has been updated, the modified entity should be sent to the relative URL: "/SubscriptionPlanService/usersubscription/{id}" (HTTP-PUT) If an existing UserSubscription entity has to be deleted, the following relative URL should be called: "/SubscriptionPlanService/usersubscription/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint