Overview
Summary
Contact
Donate
Imprint
Prompt for the
AdImpressionView
Please create a React-JS view called "AdImpressionView" for the fields of the AdImpression entity. The AdImpressionView must contain the following fields: - name: Ad type: Ad - name: ClickedAt type: DATE - name: Device type: Device - name: ImpressionAt type: DATE - name: RevenueMicros type: LONG - name: User type: User - name: Video type: Video The data source for the [Ad] select control should be loaded from the relative URL: "/AdService/ad" (HTTP-GET) The data source for the [User] select control should be loaded from the relative URL: "/UserService/user" (HTTP-GET) The data source for the [Device] select control should be loaded from the relative URL: "/DeviceService/device" (HTTP-GET) The data source for the [Video] select control should be loaded from the relative URL: "/VideoService/video" (HTTP-GET) An existing AdImpression entity should be loaded from the relative URL: "/UserService/adimpression/{id}" (HTTP-GET) If a new AdImpression entity has been created, the new entity should be posted to the relative URL: "/UserService/adimpression" (HTTP-POST) If an existing AdImpression entity has been updated, the modified entity should be sent to the relative URL: "/UserService/adimpression/{id}" (HTTP-PUT) If an existing AdImpression entity has to be deleted, the following relative URL should be called: "/UserService/adimpression/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint