protected BroadcastConfig(long identifier, DateTime created, string fromNumber,
     LocalTimeZoneRestriction localTimeZoneRestriction, BroadcastConfigRetryConfig retryConfig)
 {
     id = identifier;
     Created = created;
     FromNumber = fromNumber;
     LocalTimeZoneRestriction = localTimeZoneRestriction;
     RetryConfig = retryConfig;
 }
Ejemplo n.º 2
0
 protected BroadcastConfig(long identifier, DateTime created, string fromNumber,
                           LocalTimeZoneRestriction localTimeZoneRestriction, BroadcastConfigRetryConfig retryConfig)
 {
     id         = identifier;
     Created    = created;
     FromNumber = fromNumber;
     LocalTimeZoneRestriction = localTimeZoneRestriction;
     RetryConfig = retryConfig;
 }
 internal static CfLocalTimeZoneRestriction FromSoapLocalTimeZoneRestriction(LocalTimeZoneRestriction source)
 {
     return source == null ? null : new CfLocalTimeZoneRestriction(source.BeginTime, source.EndTime);
 }