ClientStreamsServiceCreateRequest constructor
ClientStreamsServiceCreateRequest({})
Implementation
factory ClientStreamsServiceCreateRequest({
$core.String? entityUuid,
$core.String? userComment,
$fixnum.Int64? vaultFolderId,
$core.String? title,
$fixnum.Int64? clientId,
CLIENT_STREAM_REF_FROM? refFrom,
$fixnum.Int64? refId,
$core.bool? assignSelfAsInternalSubscriber,
$core.bool? assignSelfAsClientSubscriber,
}) {
final result = create();
if (entityUuid != null) result.entityUuid = entityUuid;
if (userComment != null) result.userComment = userComment;
if (vaultFolderId != null) result.vaultFolderId = vaultFolderId;
if (title != null) result.title = title;
if (clientId != null) result.clientId = clientId;
if (refFrom != null) result.refFrom = refFrom;
if (refId != null) result.refId = refId;
if (assignSelfAsInternalSubscriber != null)
result.assignSelfAsInternalSubscriber = assignSelfAsInternalSubscriber;
if (assignSelfAsClientSubscriber != null)
result.assignSelfAsClientSubscriber = assignSelfAsClientSubscriber;
return result;
}