// Token: 0x06001551 RID: 5457 RVA: 0x000481FC File Offset: 0x000463FC
 public AwayEvent.Builder SetType(AwayEvent.Types.AwayEventType value)
 {
     this.PrepareBuilder();
     this.result.hasType = true;
     this.result.type_   = value;
     return(this);
 }
示例#2
0
 public override AwayEvent.Builder MergeFrom(AwayEvent other)
 {
     if (other == AwayEvent.DefaultInstance)
     {
         return(this);
     }
     this.PrepareBuilder();
     if (other.HasType)
     {
         this.Type = other.Type;
     }
     if (other.HasTimestamp)
     {
         this.Timestamp = other.Timestamp;
     }
     if (other.HasInstigator)
     {
         this.Instigator = other.Instigator;
     }
     this.MergeUnknownFields(other.UnknownFields);
     return(this);
 }