<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| --> GET https://api.level.travel/client/orders/39054372?auth_token=23856f11-e71c-4c39-8359-1ed60bb53a03&all_payment_methods=true | |
| <-- 200 https://api.level.travel/client/orders/39054372?auth_token=23856f11-e71c-4c39-8359-1ed60bb53a03&all_payment_methods=true (2487ms) | |
| server: nginx/1.18.0 | |
| date: Mon, 08 Feb 2021 10:02:16 GMT | |
| content-type: application/json; charset=utf-8 | |
| vary: Accept-Encoding | |
| x-frame-options: SAMEORIGIN | |
| x-xss-protection: 1; mode=block | |
| x-content-type-options: nosniff | |
| x-download-options: noopen |
| @Singleton | |
| @Component(modules = { | |
| AndroidSupportInjectionModule.class, | |
| AppModule.class, | |
| BuildersModule.class}) | |
| public interface AppComponent { | |
| void inject(Application app); | |
| @Component.Builder |
| public class SwipeViewPager extends ViewPager { | |
| public enum SwipeDirection { | |
| all, left, right, none | |
| } | |
| private float initialXValue; | |
| private SwipeDirection direction; | |
| public CustomViewPager(Context context, AttributeSet attrs) { |
| class ExpandableLayout : FrameLayout { | |
| companion object { | |
| private val DEFAULT_INTERPOLATOR = AccelerateDecelerateInterpolator() | |
| private const val DEFAULT_DURATION = 500 | |
| } | |
| enum class Status { | |
| EXPANDED, COLLAPSED, MOVING |
| 0x94311875A9b94a183e85F13e1e64DBe1Ed0896BD |
| class PreCachingLinearLayoutManager : LinearLayoutManager { | |
| companion object { | |
| val DEFAULT_EXTRA_LAYOUT_SPACE = 600 | |
| } | |
| var extraLayoutSpace = -1 | |
| private var context: Context | |
| constructor(context: Context) : super(context) { |
| /** | |
| * Send email. | |
| * | |
| * @param context the context | |
| * @param email the email | |
| * @param subject the subject | |
| * @param text the text | |
| */ | |
| public void sendEmail(Context context, String email, String subject, | |
| String text) { |