Ejemplo n.º 1
0
        public ScheduledQueryRunServiceTest()
        {
            this.service = new ScheduledQueryRunService();

            this.listOptions = new ScheduledQueryRunListOptions
            {
                Limit = 1,
            };
        }
Ejemplo n.º 2
0
        public ScheduledQueryRunServiceTest(MockHttpClientFixture mockHttpClientFixture)
            : base(mockHttpClientFixture)
        {
            this.service = new ScheduledQueryRunService();

            this.listOptions = new ScheduledQueryRunListOptions
            {
                Limit = 1,
            };
        }
Ejemplo n.º 3
0
        public ScheduledQueryRunServiceTest(
            StripeMockFixture stripeMockFixture,
            MockHttpClientFixture mockHttpClientFixture)
            : base(stripeMockFixture, mockHttpClientFixture)
        {
            this.service = new ScheduledQueryRunService(this.StripeClient);

            this.listOptions = new ScheduledQueryRunListOptions
            {
                Limit = 1,
            };
        }
 public virtual Task <StripeList <ScheduledQueryRun> > ListAsync(ScheduledQueryRunListOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(this.ListEntitiesAsync(options, requestOptions, cancellationToken));
 }
 public virtual StripeList <ScheduledQueryRun> List(ScheduledQueryRunListOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.ListEntities(options, requestOptions));
 }
 public virtual IEnumerable <ScheduledQueryRun> ListAutoPaging(ScheduledQueryRunListOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.ListEntitiesAutoPaging(options, requestOptions));
 }
Ejemplo n.º 7
0
 public virtual IAsyncEnumerable <ScheduledQueryRun> ListAutoPagingAsync(ScheduledQueryRunListOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(this.ListEntitiesAutoPagingAsync(options, requestOptions, cancellationToken));
 }