itemApplicationScopesUpdatePost abstract method

  1. @Post.new(path: '/item/application/scopes/update')
Future<Response<ItemApplicationScopesUpdateResponse>> itemApplicationScopesUpdatePost({
  1. @Body.new() required ItemApplicationScopesUpdateRequest? body,
})

Update the scopes of access for a particular application

Implementation

@Post(path: '/item/application/scopes/update')
Future<chopper.Response<ItemApplicationScopesUpdateResponse>>
    itemApplicationScopesUpdatePost(
        {@Body() required ItemApplicationScopesUpdateRequest? body});