/// <summary>
 /// For use when requester is not needed or unknown.
 /// </summary>
 /// <param name="response"></param>
 public IGComponentBuilder(InstagramProcessorResponse response)
 {
     this.Response = response;
 }
 /// <summary>
 /// For use when requester is not needed or unknown.
 /// </summary>
 /// <param name="response"></param>
 public IGEmbedBuilder(InstagramProcessorResponse response, bool isSpoiler = false)
 {
     this.Response  = response;
     this.IsSpoiler = isSpoiler;
 }
 /// <summary>
 /// Create an instance of the component builder.
 /// </summary>
 /// <param name="response"></param>
 public IGComponentBuilder(InstagramProcessorResponse response, ulong requesterId)
 {
     this.Response    = response;
     this.RequesterId = requesterId;
 }