From:  `@protocol TTStaticImageDelegate /**  Method responsible to handle static image response when static image returns image. Within this callback user will obtain Response populated with image.   @param staticImage Object type TTStaticImage.  @param image Object type UIImage.  */ -(void)staticImage:(TTStaticImage* _Nonnull)staticImage completedWithImage:(UIImage * _Nonnull)image; /**  Method responsible to static image response when static image service returns error. Within this callback user will obtain static image error containing a Throwable fail reason   @param staticImage Object type TTStaticImage.  @param error Object type TTResponseError.  */ -(void)staticImage:(TTStaticImage* _Nonnull)staticImage failedWithError:(TTResponseError* _Nonnull)error;  @end`
To:  `@protocol TTStaticImageDelegate`