UnlinkOrgRequest constructor
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;
}