RemoveProjectRoleRequest constructor

RemoveProjectRoleRequest({
  1. String? projectId,
  2. String? roleKey,
})

Implementation

factory RemoveProjectRoleRequest({
  $core.String? projectId,
  $core.String? roleKey,
}) {
  final _result = create();
  if (projectId != null) {
    _result.projectId = projectId;
  }
  if (roleKey != null) {
    _result.roleKey = roleKey;
  }
  return _result;
}