Stripe.StripeRefundService.Get C# (CSharp) Method

Get() public method

public Get ( string refundId, Stripe.StripeRequestOptions requestOptions = null ) : Stripe.StripeRefund
refundId string
requestOptions Stripe.StripeRequestOptions
return Stripe.StripeRefund
        public virtual StripeRefund Get(string refundId, StripeRequestOptions requestOptions = null)
        {
            return Mapper<StripeRefund>.MapFromJson(
                Requestor.GetString(
                    this.ApplyAllParameters(null, $"{Urls.BaseUrl}/refunds/{refundId}"),
                    SetupRequestOptions(requestOptions)
                )
            );
        }