UnlinkOrgRequest constructor

UnlinkOrgRequest({
  1. String? oauthAppLinkId,
  2. String? orgId,
})

Implementation

factory UnlinkOrgRequest({
  $core.String? oauthAppLinkId,
  $core.String? orgId,
}) {
  final $result = create();
  if (oauthAppLinkId != null) {
    $result.oauthAppLinkId = oauthAppLinkId;
  }
  if (orgId != null) {
    $result.orgId = orgId;
  }
  return $result;
}