Overview
Summary
Contact
Donate
Imprint
Prompt for the
AdPlacementView
Please create a React-JS view called "AdPlacementView" for the fields of the AdPlacement entity. The AdPlacementView must contain the following fields: - name: AdCampaign type: AdCampaign - name: Clicks type: LONG - name: CreatedAt type: DATE - name: Impressions type: LONG - name: PlacementType type: STRING - name: Post type: Post - name: Reel type: Reel - name: Story type: Story The data source for the [Post] select control should be loaded from the relative URL: "/UserAccountService/post" (HTTP-GET) The data source for the [AdCampaign] select control should be loaded from the relative URL: "/ReelService/adcampaign" (HTTP-GET) The data source for the [Reel] select control should be loaded from the relative URL: "/ReelService/reel" (HTTP-GET) The data source for the [Story] select control should be loaded from the relative URL: "/StoryService/story" (HTTP-GET) An existing AdPlacement entity should be loaded from the relative URL: "/StoryService/adplacement/{id}" (HTTP-GET) If a new AdPlacement entity has been created, the new entity should be posted to the relative URL: "/StoryService/adplacement" (HTTP-POST) If an existing AdPlacement entity has been updated, the modified entity should be sent to the relative URL: "/StoryService/adplacement/{id}" (HTTP-PUT) If an existing AdPlacement entity has to be deleted, the following relative URL should be called: "/StoryService/adplacement/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint